From aec3e3cd13917f8c640971ce564cd43ea981508c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 09:15:29 -0700 Subject: [PATCH 01/20] force github test --- jc/parsers/ip_address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/ip_address.py b/jc/parsers/ip_address.py index 3e44f7fe..fe8e1145 100644 --- a/jc/parsers/ip_address.py +++ b/jc/parsers/ip_address.py @@ -1,4 +1,4 @@ -r"""jc - JSON Convert IP Address string parser +r"""jc - JSON Convert IP Address string parser - force test Accepts standard and integer IP address notation for both IPv4 and IPv6 addresses. CIDR subnet mask and Scope ID is also allowed for standard From ba6e1e694e7fd3865945dad1e462eb94a2bba478 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 13:06:17 -0700 Subject: [PATCH 02/20] fix for python backports for ipv6 output --- jc/parsers/ip_address.py | 2 +- tests/test_ip_address.py | 48 ++++++++++++++++++++++++++++++---------- 2 files changed, 37 insertions(+), 13 deletions(-) diff --git a/jc/parsers/ip_address.py b/jc/parsers/ip_address.py index fe8e1145..3e44f7fe 100644 --- a/jc/parsers/ip_address.py +++ b/jc/parsers/ip_address.py @@ -1,4 +1,4 @@ -r"""jc - JSON Convert IP Address string parser - force test +r"""jc - JSON Convert IP Address string parser Accepts standard and integer IP address notation for both IPv4 and IPv6 addresses. CIDR subnet mask and Scope ID is also allowed for standard diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index a3757d40..3f322558 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -1,7 +1,6 @@ import unittest import json import jc.parsers.ip_address -import sys class MyTests(unittest.TestCase): @@ -89,17 +88,42 @@ def test_ip_address_ipv6_ipv4_mapped(self): """ Test ipv6 address with ipv4 mapped string """ + # IPv4 mapped behavior changes in newer versions of python are being backported + # to old versions so we are checking if more than one style fails before + # failing the test + data = r'::FFFF:192.168.1.35' - if sys.version_info >= (3, 13, 0): - expected_ipv4 = '192.168.1.35' - expected_ipv4_exploded = '192.168.1.35' - expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' - else: - expected_ipv4 = 'c0a8:123' - expected_ipv4_exploded = 'c0a8:0123' - expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "c0a8", "0123"]' + actual = jc.parsers.ip_address.parse(data, quiet=True) + failures = 0 + failure_msg1 = '' + failure_msg2 = '' + + # New-Style IPv4 Mapped output + expected_ipv4 = '192.168.1.35' + expected_ipv4_exploded = '192.168.1.35' + expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') - self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msg1 = f'New-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + + # Old-Style IPv4 Mapped output + expected_ipv4 = 'c0a8:123' + expected_ipv4_exploded = 'c0a8:0123' + expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "c0a8", "0123"]' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msg2 = f'Old-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + + if failures > 1: + self.fail(failure_msg1 + '\n' + failure_msg2) def test_ip_address_ipv6_6to4(self): @@ -120,7 +144,7 @@ def test_ip_address_ipv6_6to4(self): expected_private = r'"is_private":true,"is_global":false' expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,''' + expected_private + r''',"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') try: - self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + self.assertEqual(actual, expected) except AssertionError: failures += 1 failure_msg1 = f'New-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' @@ -129,7 +153,7 @@ def test_ip_address_ipv6_6to4(self): expected_private = r'"is_private":false,"is_global":true' expected = json.loads(r'''{"version":6,"max_prefix_length":128,"ip":"2002:c000:204::","ip_compressed":"2002:c000:204::","ip_exploded":"2002:c000:0204:0000:0000:0000:0000:0000","ip_split":["2002","c000","0204","0000","0000","0000","0000","0000"],"scope_id":null,"ipv4_mapped":null,"six_to_four":"192.0.2.4","teredo_client":null,"teredo_server":null,"dns_ptr":"0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.2.0.0.0.0.c.2.0.0.2.ip6.arpa","network":"2002:c000:204::","broadcast":"2002:c000:204:ffff:ffff:ffff:ffff:ffff","hostmask":"::ffff:ffff:ffff:ffff:ffff","netmask":"ffff:ffff:ffff::","cidr_netmask":48,"hosts":1208925819614629174706174,"first_host":"2002:c000:204::1","last_host":"2002:c000:204:ffff:ffff:ffff:ffff:fffe","is_multicast":false,''' + expected_private + r''',"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{"ip":42549574682102084431821433448024768512,"network":42549574682102084431821433448024768512,"broadcast":42549574682103293357641048077199474687,"first_host":42549574682102084431821433448024768513,"last_host":42549574682103293357641048077199474686},"hex":{"ip":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","network":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:00","broadcast":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","hostmask":"00:00:00:00:00:00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","netmask":"ff:ff:ff:ff:ff:ff:00:00:00:00:00:00:00:00:00:00","first_host":"20:02:c0:00:02:04:00:00:00:00:00:00:00:00:00:01","last_host":"20:02:c0:00:02:04:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe"},"bin":{"ip":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","network":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000","broadcast":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111111","hostmask":"00000000000000000000000000000000000000000000000011111111111111111111111111111111111111111111111111111111111111111111111111111111","netmask":"11111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000","first_host":"00100000000000101100000000000000000000100000010000000000000000000000000000000000000000000000000000000000000000000000000000000001","last_host":"00100000000000101100000000000000000000100000010011111111111111111111111111111111111111111111111111111111111111111111111111111110"}}''') try: - self.assertEqual(jc.parsers.ip_address.parse(data, quiet=True), expected) + self.assertEqual(actual, expected) except AssertionError: failures += 1 failure_msg2 = f'Old-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' From b7cf0ca8d4013b267d1b6403f0d836bb2138bcdc Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 13:13:31 -0700 Subject: [PATCH 03/20] flip is_reserved to false for python ipv6 backports --- tests/test_ip_address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index 3f322558..d143667e 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -102,7 +102,7 @@ def test_ip_address_ipv6_ipv4_mapped(self): expected_ipv4 = '192.168.1.35' expected_ipv4_exploded = '192.168.1.35' expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' - expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') try: self.assertEqual(actual, expected) From 05f3e4ea8a107e3d0cb039ba9bbe3f2747602a4b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 13:53:20 -0700 Subject: [PATCH 04/20] fixup tests --- tests/test_ip_address.py | 50 ++++++++++++++++++++++++++++------------ 1 file changed, 35 insertions(+), 15 deletions(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index d143667e..a22a3b9d 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -95,35 +95,56 @@ def test_ip_address_ipv6_ipv4_mapped(self): data = r'::FFFF:192.168.1.35' actual = jc.parsers.ip_address.parse(data, quiet=True) failures = 0 - failure_msg1 = '' - failure_msg2 = '' + failure_msgs = [] - # New-Style IPv4 Mapped output + # New-Style IPv4 Mapped output with is_reserved=false expected_ipv4 = '192.168.1.35' expected_ipv4_exploded = '192.168.1.35' expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "192", "168", "1", "35"]' - expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":false,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + expected_is_reserved = 'false' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') try: self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg1 = f'New-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'New-style IPv4 Mapped is_reserved=false failure:\n Expected: {expected}\n Actual: {actual}') - # Old-Style IPv4 Mapped output + # New-Style IPv4 Mapped output with is_reserved=true + expected_is_reserved = 'true' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msgs.append(f'New-style IPv4 Mapped is_reserved=true failure:\n Expected: {expected}\n Actual: {actual}') + + # Old-Style IPv4 Mapped output with is_reserved=false expected_ipv4 = 'c0a8:123' expected_ipv4_exploded = 'c0a8:0123' expected_ipv4_split = '["0000", "0000", "0000", "0000", "0000", "ffff", "c0a8", "0123"]' - expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":true,"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + expected_is_reserved = 'false' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') try: self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg2 = f'Old-style IPv4 Mapped failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'Old-style IPv4 Mapped is_reserved=false failure:\n Expected: {expected}\n Actual: {actual}') - if failures > 1: - self.fail(failure_msg1 + '\n' + failure_msg2) + # Old-Style IPv4 Mapped output with is_reserved=true + expected_is_reserved = 'true' + expected = json.loads(f'''{{"version":6,"max_prefix_length":128,"ip":"::ffff:{expected_ipv4}","ip_compressed":"::ffff:{expected_ipv4}","ip_exploded":"0000:0000:0000:0000:0000:ffff:{expected_ipv4_exploded}","ip_split":{expected_ipv4_split},"scope_id":null,"ipv4_mapped":"192.168.1.35","six_to_four":null,"teredo_client":null,"teredo_server":null,"dns_ptr":"3.2.1.0.8.a.0.c.f.f.f.f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa","network":"::ffff:{expected_ipv4}","broadcast":"::ffff:{expected_ipv4}","hostmask":"::","netmask":"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff","cidr_netmask":128,"hosts":1,"first_host":"::ffff:{expected_ipv4}","last_host":"::ffff:{expected_ipv4}","is_multicast":false,"is_private":true,"is_global":false,"is_link_local":false,"is_loopback":false,"is_reserved":{expected_is_reserved},"is_unspecified":false,"int":{{"ip":281473913979171,"network":281473913979171,"broadcast":281473913979171,"first_host":281473913979171,"last_host":281473913979171}},"hex":{{"ip":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","network":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","broadcast":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","hostmask":"00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00","netmask":"ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff","first_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23","last_host":"00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:01:23"}},"bin":{{"ip":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","network":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","broadcast":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","hostmask":"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","netmask":"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111","first_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011","last_host":"00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111000000101010000000000100100011"}}}}''') + + try: + self.assertEqual(actual, expected) + except AssertionError: + failures += 1 + failure_msgs.append(f'Old-style IPv4 Mapped is_reserved=true failure:\n Expected: {expected}\n Actual: {actual}') + + if failures > 3: + self.fail('\n\n'.join(failure_msgs)) def test_ip_address_ipv6_6to4(self): @@ -137,8 +158,7 @@ def test_ip_address_ipv6_6to4(self): data = r'2002:c000:204::/48' actual = jc.parsers.ip_address.parse(data, quiet=True) failures = 0 - failure_msg1 = '' - failure_msg2 = '' + failure_msgs = [] # New-Style 6to4 output expected_private = r'"is_private":true,"is_global":false' @@ -147,7 +167,7 @@ def test_ip_address_ipv6_6to4(self): self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg1 = f'New-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'New-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}') # Old-Style 6to4 output expected_private = r'"is_private":false,"is_global":true' @@ -156,10 +176,10 @@ def test_ip_address_ipv6_6to4(self): self.assertEqual(actual, expected) except AssertionError: failures += 1 - failure_msg2 = f'Old-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}' + failure_msgs.append(f'Old-style 6to4 address failure:\n Expected: {expected}\n Actual: {actual}') if failures > 1: - self.fail(failure_msg1 + '\n' + failure_msg2) + self.fail('\n\n'.join(failure_msgs)) def test_ip_address_ipv6_teredo(self): From 78150ded70d1068fc0f5a138e8704c57df7c97f9 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2024 14:05:06 -0700 Subject: [PATCH 05/20] doc update --- tests/test_ip_address.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_ip_address.py b/tests/test_ip_address.py index a22a3b9d..da33f58a 100644 --- a/tests/test_ip_address.py +++ b/tests/test_ip_address.py @@ -89,8 +89,7 @@ def test_ip_address_ipv6_ipv4_mapped(self): Test ipv6 address with ipv4 mapped string """ # IPv4 mapped behavior changes in newer versions of python are being backported - # to old versions so we are checking if more than one style fails before - # failing the test + # to old versions so we are checking if at least one style passes data = r'::FFFF:192.168.1.35' actual = jc.parsers.ip_address.parse(data, quiet=True) @@ -152,8 +151,7 @@ def test_ip_address_ipv6_6to4(self): Test ipv6 6to4 address string """ # 6to4 behavior changes in newer versions of python are being backported - # to old versions so we are checking if more than one style fails before - # failing the test + # to old versions so we are checking if at least one style passes data = r'2002:c000:204::/48' actual = jc.parsers.ip_address.parse(data, quiet=True) From c5e0642b0b38b5b7bee01e492ed93a72c879c09e Mon Sep 17 00:00:00 2001 From: Jake Ob Date: Fri, 18 Oct 2024 19:50:51 +0300 Subject: [PATCH 06/20] Fix broken controller regexp scheme in the bluetoothctl parser (#599) This commit fixes the controller parser scheme in order to take care and extract some extra attributes, the manufacturer and version. The order of the attributes appearing in the regexp scheme must follow the order they appear in the `bluetoothctl show` outputs. A new test has been added to test outputs with these extra attrs. Co-authored-by: Kelly Brazil --- jc/parsers/bluetoothctl.py | 16 +++++- ...etoothctl_controller_with_manufacturer.out | 37 +++++++++++++ tests/test_bluetoothctl.py | 52 +++++++++++++++++++ 3 files changed, 103 insertions(+), 2 deletions(-) create mode 100644 tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out diff --git a/jc/parsers/bluetoothctl.py b/jc/parsers/bluetoothctl.py index 84de1528..2fabd41b 100644 --- a/jc/parsers/bluetoothctl.py +++ b/jc/parsers/bluetoothctl.py @@ -28,6 +28,8 @@ Controller: [ { + "manufacturer": string, + "version": string, "name": string, "is_default": boolean, "is_public": boolean, @@ -127,6 +129,8 @@ class info(): Controller = TypedDict( "Controller", { + "manufacturer": str, + "version": str, "name": str, "is_default": bool, "is_public": bool, @@ -175,7 +179,9 @@ class info(): _controller_head_pattern = r"Controller (?P
([0-9A-F]{2}:){5}[0-9A-F]{2}) (?P.+)" _controller_line_pattern = ( - r"(\s*Name:\s*(?P.+)" + r"(\s*Manufacturer:\s*(?P.+)" + + r"|\s*Version:\s*(?P.+)" + + r"|\s*Name:\s*(?P.+)" + r"|\s*Alias:\s*(?P.+)" + r"|\s*Class:\s*(?P.+)" + r"|\s*Powered:\s*(?P.+)" @@ -203,6 +209,8 @@ def _parse_controller(next_lines: List[str]) -> Optional[Controller]: return None controller: Controller = { + "manufacturer": '', + "version": '', "name": '', "is_default": False, "is_public": False, @@ -241,7 +249,11 @@ def _parse_controller(next_lines: List[str]) -> Optional[Controller]: matches = result.groupdict() - if matches["name"]: + if matches["manufacturer"]: + controller["manufacturer"] = matches["manufacturer"] + elif matches["version"]: + controller["version"] = matches["version"] + elif matches["name"]: controller["name"] = matches["name"] elif matches["alias"]: controller["alias"] = matches["alias"] diff --git a/tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out b/tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out new file mode 100644 index 00000000..6b46fd96 --- /dev/null +++ b/tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out @@ -0,0 +1,37 @@ +Controller 48:A4:72:3C:96:63 (public) + Manufacturer: 0x0002 (2) + Version: 0x08 (8) + Name: ubuntu + Alias: ubuntu + Class: 0x007c0104 (8126724) + Powered: yes + Discoverable: yes + DiscoverableTimeout: 0x000000b4 (180) + Pairable: yes + UUID: Message Notification Se.. (00001133-0000-1000-8000-00805f9b34fb) + UUID: A/V Remote Control (0000110e-0000-1000-8000-00805f9b34fb) + UUID: OBEX Object Push (00001105-0000-1000-8000-00805f9b34fb) + UUID: Message Access Server (00001132-0000-1000-8000-00805f9b34fb) + UUID: PnP Information (00001200-0000-1000-8000-00805f9b34fb) + UUID: IrMC Sync (00001104-0000-1000-8000-00805f9b34fb) + UUID: Vendor specific (00005005-0000-1000-8000-0002ee000001) + UUID: A/V Remote Control Target (0000110c-0000-1000-8000-00805f9b34fb) + UUID: Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb) + UUID: Phonebook Access Server (0000112f-0000-1000-8000-00805f9b34fb) + UUID: Audio Sink (0000110b-0000-1000-8000-00805f9b34fb) + UUID: Device Information (0000180a-0000-1000-8000-00805f9b34fb) + UUID: Generic Access Profile (00001800-0000-1000-8000-00805f9b34fb) + UUID: Handsfree Audio Gateway (0000111f-0000-1000-8000-00805f9b34fb) + UUID: Audio Source (0000110a-0000-1000-8000-00805f9b34fb) + UUID: OBEX File Transfer (00001106-0000-1000-8000-00805f9b34fb) + UUID: Handsfree (0000111e-0000-1000-8000-00805f9b34fb) + Modalias: usb:v1D6Bp0246d0548 + Discovering: yes + Roles: central + Roles: peripheral +Advertising Features: + ActiveInstances: 0x00 (0) + SupportedInstances: 0x05 (5) + SupportedIncludes: tx-power + SupportedIncludes: appearance + SupportedIncludes: local-name diff --git a/tests/test_bluetoothctl.py b/tests/test_bluetoothctl.py index f573f950..1df04213 100644 --- a/tests/test_bluetoothctl.py +++ b/tests/test_bluetoothctl.py @@ -104,6 +104,58 @@ def test_bluetoothctl_controller(self): if actual: for k, v in expected.items(): self.assertEqual(v, actual[0][k], f"Controller regex failed on {k}") + + def test_bluetoothctl_controller_with_manufacturer(self): + """ + Test 'bluetoothctl' with controller having manufacturer attr + """ + + with open("tests/fixtures/generic/bluetoothctl_controller_with_manufacturer.out", "r") as f: + output = f.read() + + actual = parse(output, quiet=True) + + self.assertIsNotNone(actual) + self.assertIsNotNone(actual[0]) + + expected = { + "manufacturer": "0x0002 (2)", + "version": "0x08 (8)", + "address": "48:A4:72:3C:96:63", + "is_public": True, + "name": "ubuntu", + "alias": "ubuntu", + "class": "0x007c0104 (8126724)", + "powered": "yes", + "discoverable": "yes", + "discoverable_timeout": "0x000000b4 (180)", + "pairable": "yes", + "uuids": [ + "Message Notification Se.. (00001133-0000-1000-8000-00805f9b34fb)", + "A/V Remote Control (0000110e-0000-1000-8000-00805f9b34fb)", + "OBEX Object Push (00001105-0000-1000-8000-00805f9b34fb)", + "Message Access Server (00001132-0000-1000-8000-00805f9b34fb)", + "PnP Information (00001200-0000-1000-8000-00805f9b34fb)", + "IrMC Sync (00001104-0000-1000-8000-00805f9b34fb)", + "Vendor specific (00005005-0000-1000-8000-0002ee000001)", + "A/V Remote Control Target (0000110c-0000-1000-8000-00805f9b34fb)", + "Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb)", + "Phonebook Access Server (0000112f-0000-1000-8000-00805f9b34fb)", + "Audio Sink (0000110b-0000-1000-8000-00805f9b34fb)", + "Device Information (0000180a-0000-1000-8000-00805f9b34fb)", + "Generic Access Profile (00001800-0000-1000-8000-00805f9b34fb)", + "Handsfree Audio Gateway (0000111f-0000-1000-8000-00805f9b34fb)", + "Audio Source (0000110a-0000-1000-8000-00805f9b34fb)", + "OBEX File Transfer (00001106-0000-1000-8000-00805f9b34fb)", + "Handsfree (0000111e-0000-1000-8000-00805f9b34fb)" + ], + "modalias": "usb:v1D6Bp0246d0548", + "discovering": "yes" + } + + if actual: + for k, v in expected.items(): + self.assertEqual(v, actual[0][k], f"Controller regex failed on {k}") def test_bluetoothctl_controllers(self): """ From 2df5e79295187b134b5c1d9bac01ac3e85e6d937 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 18 Oct 2024 09:56:32 -0700 Subject: [PATCH 07/20] doc update --- CHANGELOG | 3 ++- jc/parsers/bluetoothctl.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b6396c11..89dd9665 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,10 @@ jc changelog -20240922 v1.25.4 +20241018 v1.25.4 - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses diff --git a/jc/parsers/bluetoothctl.py b/jc/parsers/bluetoothctl.py index 2fabd41b..3d241334 100644 --- a/jc/parsers/bluetoothctl.py +++ b/jc/parsers/bluetoothctl.py @@ -112,7 +112,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`bluetoothctl` command parser' author = 'Jake Ob' author_email = 'iakopap at gmail.com' From a2e0e6d5494587516a261fe0058db7714e5ca337 Mon Sep 17 00:00:00 2001 From: "Jose E. Rodriguez" Date: Fri, 18 Oct 2024 17:17:14 -0400 Subject: [PATCH 08/20] feat: Add Windows ipconfig parser to jc (#596) * feat: Introduce ipconfig parser * fix: add parsing support for "connection_specific_dns_suffix_search_list" and windows XP ipv4 addresses, remove dateutil dependency * fix: introduce unit tests, correct import of datetime * fix: changed preferred to status to account for other ip statuses, and parsed link local ipv6 prefix length * fix: compress _parse_header_line and _parse_adapter_line + fix casing in unit test file --------- Co-authored-by: Kelly Brazil --- jc/lib.py | 1 + jc/parsers/ipconfig.py | 778 ++++++++++++++++++ .../fixtures/windows/windows-10/ipconfig.json | 133 +++ .../fixtures/windows/windows-10/ipconfig.out | 57 ++ .../fixtures/windows/windows-11/ipconfig.json | 326 ++++++++ .../fixtures/windows/windows-11/ipconfig.out | 130 +++ .../windows/windows-2008/ipconfig.json | 80 ++ .../windows/windows-2008/ipconfig.out | 33 + .../windows/windows-2016/ipconfig.json | 82 ++ .../windows/windows-2016/ipconfig.out | 34 + .../fixtures/windows/windows-7/ipconfig.json | 82 ++ tests/fixtures/windows/windows-7/ipconfig.out | 37 + .../fixtures/windows/windows-xp/ipconfig.json | 51 ++ .../fixtures/windows/windows-xp/ipconfig.out | 25 + tests/test_ipconfig.py | 48 ++ 15 files changed, 1897 insertions(+) create mode 100644 jc/parsers/ipconfig.py create mode 100644 tests/fixtures/windows/windows-10/ipconfig.json create mode 100644 tests/fixtures/windows/windows-10/ipconfig.out create mode 100644 tests/fixtures/windows/windows-11/ipconfig.json create mode 100644 tests/fixtures/windows/windows-11/ipconfig.out create mode 100644 tests/fixtures/windows/windows-2008/ipconfig.json create mode 100644 tests/fixtures/windows/windows-2008/ipconfig.out create mode 100644 tests/fixtures/windows/windows-2016/ipconfig.json create mode 100644 tests/fixtures/windows/windows-2016/ipconfig.out create mode 100644 tests/fixtures/windows/windows-7/ipconfig.json create mode 100644 tests/fixtures/windows/windows-7/ipconfig.out create mode 100644 tests/fixtures/windows/windows-xp/ipconfig.json create mode 100644 tests/fixtures/windows/windows-xp/ipconfig.out create mode 100644 tests/test_ipconfig.py diff --git a/jc/lib.py b/jc/lib.py index 9bcd9a2a..0b4341ba 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -75,6 +75,7 @@ 'iostat', 'iostat-s', 'ip-address', + 'ipconfig', 'iptables', 'ip-route', 'iw-scan', diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py new file mode 100644 index 00000000..25ba615f --- /dev/null +++ b/jc/parsers/ipconfig.py @@ -0,0 +1,778 @@ +r"""jc - JSON Convert `ipconfig` command output parser + + +Usage (cli): + + $ ipconfig /all | jc --ipconfig + $ ipconfig | jc --ipconfig + +Usage (module): + + import jc + result = jc.parse('ipconfig', ipconfig_command_output) + +Schema: + + { + "host_name": string, + "primary_dns_suffix": string, + "node_type": string, + "ip_routing_enabled": boolean, + "wins_proxy_enabled": boolean, + "dns_suffix_search_list": [ + string + ], + "adapters": [ + { + "name_long": string, + "name": string, + "type": string, + "connection_specific_dns_suffix": string, + "connection_specific_dns_suffix_search_list": [ + string + ] + "description": string, + "physical_address": string, + "dhcp_enabled": boolean, + "autoconfiguration_enabled": boolean, + "ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "temporary_ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "link_local_ipv6_addresses": [ + { + "address": string, + "status": string, + "prefix_length": int, + } + ], + "ipv4_addresses": [ + { + "address": string, # [2] + "subnet_mask": string, + "status": string, + "autoconfigured": boolean # [1] + } + ], + "default_gateways": [ + string + ], + "dhcp_server": null, + "dhcpv6_iaid": string, + "dhcpv6_client_duid": string, + "dns_servers": [ + string + ], + "primary_wins_server": string, + "lease_expires": string, # [0] + "lease_obtained": string, # [0] + "netbios_over_tcpip": boolean, + "media_state": string, + "extras": [ + string: string + ] + } + ], + "extras": [] + } + + Notes: + [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 format date strings. if the value was unable + to be parsed by datetime, the fields will be in their raw form + [1] - 'autoconfigured' under 'ipv4_address' is only providing indication if the ipv4 address was labeled as + "Autoconfiguration IPv4 Address" vs "IPv4 Address". It does not infer any information from other fields + [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both values are parsed to the 'ipv4_address' + object for consistency + +Examples: + + $ ipconfig /all | jc --ipconfig -p + { + "host_name": "DESKTOP-WIN11-HOME", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "localdomain" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet", + "name": "Ethernet", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) I211 Gigabit Network Connection", + "physical_address": "24-4B-FE-AB-43-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Realtek PCIe 2.5GbE Family Controller", + "physical_address": "24-4B-FE-57-3D-F2", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", + "name": "OpenVPN Data Channel Offload for NordVPN", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "OpenVPN Data Channel Offload", + "physical_address": null, + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "TAP-NordVPN Windows Adapter V9", + "physical_address": "00-FF-4C-F4-5E-49", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 1", + "name": "Local Area Connection* 1", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter", + "physical_address": "A8-7E-EA-5A-7F-DE", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 2", + "name": "Local Area Connection* 2", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", + "physical_address": "AA-7E-EA-F3-64-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet1", + "name": "VMware Network Adapter VMnet1", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet1", + "physical_address": "00-50-56-CC-27-73", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::f47d:9c7f:69dc:591e", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.181.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.181.254", + "dhcpv6_iaid": "771772502", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet8", + "name": "VMware Network Adapter VMnet8", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet8", + "physical_address": "00-50-56-C9-A3-78", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4551:bf0d:59dd:a4f0", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.213.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.213.254", + "dhcpv6_iaid": "788549718", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": "192.168.213.2", + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Wi-Fi", + "name": "Wi-Fi", + "type": "Wireless LAN", + "connection_specific_dns_suffix": "localdomain", + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) Wi-Fi 6 AX200 160MHz", + "physical_address": "A8-7E-EA-55-26-B0", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", + "status": "Preferred" + } + ], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4fae:1380:5a1b:8b6b", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.1.169", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.1.1" + ], + "dhcp_server": "192.168.1.1", + "dhcpv6_iaid": "162037482", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [ + "192.168.1.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-20T08:31:30", + "lease_obtained": "2024-09-19T08:31:30", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "A8-7E-EA-43-23-14", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] + } + +""" +from datetime import datetime +import re +import jc.utils + + +class info(): + """Provides parser metadata (version, author, etc.)""" + version = '1.0' + description = '`ipconfig` command parser' + author = 'joehacksalot' + author_email = 'joehacksalot@gmail.com' + compatible = ['windows'] + magic_commands = ['ipconfig'] + tags = ['command'] + + +__version__ = info.version + + +def parse(data, raw=False, quiet=False): + """ + Main text parsing function + + Parameters: + + data: (string) text data to parse + raw: (boolean) unprocessed output if True + quiet: (boolean) suppress warning messages if True + + Returns: + + Parsed dictionary. The raw and processed data structures are the same. + """ + jc.utils.compatibility(__name__, info.compatible, quiet) + jc.utils.input_type_check(data) + + raw_output = {} + if jc.utils.has_data(data): + # Initialize the parsed output dictionary with all fields set to None or empty lists + raw_output = _parse(data) + + return raw_output if raw else _process(raw_output) + +def _process_ipv6_address(ip_address): + address_split = ip_address["address"].split('%') + try: + if len(address_split) > 1: + address = address_split[0] + prefix_length = int(address_split[1]) + else: + address = ip_address["address"] + prefix_length = None + except: + address = ip_address["address"] + prefix_length = None + return { + "address": address, + "prefix_length": prefix_length, + "status": ip_address["status"] + } + +def _process_ipv4_address(ip_address): + autoconfigured = True if ip_address.get("autoconfigured","") is not None and 'autoconfigured' in ip_address.get("autoconfigured","") else False + subnet_mask = ip_address["subnet_mask"] + return { + "address": ip_address["address"], + "subnet_mask": subnet_mask, + "status": ip_address["status"], + "autoconfigured": autoconfigured + } + +def _process(proc_data): + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (Dictionary) raw structured data to process + + Returns: + + Processed Dictionary. Structured data to conform to the schema. + """ + processed = proc_data + + + if "ip_routing_enabled" in processed and processed["ip_routing_enabled"] is not None: + processed["ip_routing_enabled"] = (processed["ip_routing_enabled"].lower() == "yes") + + if "wins_proxy_enabled" in processed and processed["wins_proxy_enabled"] is not None: + processed["wins_proxy_enabled"] = (processed["wins_proxy_enabled"].lower() == "yes") + + for adapter in processed["adapters"]: + if "dhcp_enabled" in adapter and adapter["dhcp_enabled"] is not None: + adapter["dhcp_enabled"] = (adapter["dhcp_enabled"].lower() == "yes") + if "autoconfiguration_enabled" in adapter and adapter["autoconfiguration_enabled"] is not None: + adapter["autoconfiguration_enabled"] = (adapter["autoconfiguration_enabled"].lower() == "yes") + if "netbios_over_tcpip" in adapter and adapter["netbios_over_tcpip"] is not None: + adapter["netbios_over_tcpip"] = (adapter["netbios_over_tcpip"].lower() == "enabled") + if "lease_expires" in adapter and adapter["lease_expires"] is not None and adapter["lease_expires"] != "": + try: + adapter["lease_expires"] = datetime.strptime(adapter["lease_expires"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() + except: + pass # Leave date in raw format if not parseable + if "lease_obtained" in adapter and adapter["lease_obtained"] is not None and adapter["lease_obtained"] != "": + try: + adapter["lease_obtained"] = datetime.strptime(adapter["lease_obtained"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() + except: + pass # Leave date in raw format if not parseable + adapter["link_local_ipv6_addresses"] = [_process_ipv6_address(address) for address in adapter.get("link_local_ipv6_addresses", [])] + adapter["ipv4_addresses"] = [_process_ipv4_address(address) for address in adapter.get("ipv4_addresses", [])] + return processed + +class _PushbackIterator: + def __init__(self, iterator): + self.iterator = iterator + self.pushback_stack = [] + def __iter__(self): + return self + def __next__(self): + if self.pushback_stack: + return self.pushback_stack.pop() + else: + return next(self.iterator) + def pushback(self, value): + self.pushback_stack.append(value) + +def _parse(data): + # Initialize the parsed output dictionary with all fields set to None or empty lists + parse_output = { + "host_name": None, + "primary_dns_suffix": None, + "node_type": None, + "ip_routing_enabled": None, + "wins_proxy_enabled": None, + "dns_suffix_search_list": [], + "adapters": [], + "extras": [] # To store unrecognized fields + } + + lines = data.splitlines() + lines = [line.rstrip() for line in lines if line.strip() != ""] + + line_iter = _PushbackIterator(iter(lines)) + adapter = None + in_adapter_section = False + + for line in line_iter: + line = line.rstrip() + + # Skip empty lines + if not line.strip(): + continue + + # Header Section + if not in_adapter_section: + if "Windows IP Configuration" in line: + continue + elif _is_adapter_start_line(line): + # Start of Adapter Section + in_adapter_section = True + adapter_name = line.strip(":").strip() + adapter = _initialize_adapter(adapter_name) + parse_output["adapters"].append(adapter) + elif line.startswith(" "): + key, value = _parse_line(line) + if key: + _parse_header_line(parse_output, key, value, line_iter) + else: + continue + else: + # Adapter Sections + if _is_adapter_start_line(line): + # Start of new adapter + adapter_name = line.strip(":").strip() + adapter = _initialize_adapter(adapter_name) + parse_output["adapters"].append(adapter) + elif line.startswith(" "): + key, value = _parse_line(line) + if key: + _parse_adapter_line(adapter, key, value, line_iter) + else: + continue + + return parse_output + +def _is_adapter_start_line(line): + # Detect adapter start lines, e.g., "Ethernet adapter Ethernet:" + return re.match(r"^[^\s].*adapter.*:", line, re.IGNORECASE) + +def _initialize_adapter(adapter_name): + adapter_name_split = adapter_name.split(" adapter ", 1) + if len(adapter_name_split) > 1: + adapter_type = adapter_name_split[0] + adapter_short_name = adapter_name_split[1] + else: + adapter_type = None + adapter_short_name = adapter_name + + # Initialize adapter dictionary with all fields set to None or empty lists + return { + "name_long": adapter_name, + "name": adapter_short_name, + "type": adapter_type, + "connection_specific_dns_suffix": None, + "connection_specific_dns_suffix_search_list": [], + "description": None, + "physical_address": None, + "dhcp_enabled": None, + "autoconfiguration_enabled": None, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": None, + "dhcpv6_iaid": None, + "dhcpv6_client_duid": None, + "dns_servers": [], + "primary_wins_server": None, + "lease_expires": None, + "lease_obtained": None, + "netbios_over_tcpip": None, + "media_state": None, + "extras": [] # To store unrecognized fields + } + +def _parse_line(line): + # Split the line into key and value using ':' or multiple spaces + key_value = re.split(r":", line.strip(), 1) + if len(key_value) == 2: + key, value = key_value + key = key.strip().rstrip('. ') + key = re.sub(r'[^\w]+', '_', key.lower()) + value = value.strip() if value.strip() != "" else None + return key, value + else: + return None, None + +def _parse_header_line(result, key, value, line_iter): + if key in ["host_name", "primary_dns_suffix", "node_type", "ip_routing_enabled", "wins_proxy_enabled"]: + result[key] = value + elif key == "dns_suffix_search_list": + if value: + result["dns_suffix_search_list"].append(value) + # Process additional entries + _parse_additional_entries(result["dns_suffix_search_list"], line_iter) + else: + # Store unrecognized fields in extras + result["extras"].append({key: value}) + +def _parse_adapter_line(adapter, key, value, line_iter): + if key in ["connection_specific_dns_suffix","media_state", "description", "physical_address", "dhcp_enabled", + "autoconfiguration_enabled", "dhcpv6_iaid", "dhcpv6_client_duid", "netbios_over_tcpip", "dhcp_server", + "lease_obtained", "lease_expires", "primary_wins_server"]: + adapter[key] = value + elif key in ["ipv6_address", "temporary_ipv6_address", "link_local_ipv6_address"]: + address_dict = _parse_ipv6_address(value) + if key == "ipv6_address": + adapter["ipv6_addresses"].append(address_dict) + elif key == "temporary_ipv6_address": + adapter["temporary_ipv6_addresses"].append(address_dict) + elif key == "link_local_ipv6_address": + adapter["link_local_ipv6_addresses"].append(address_dict) + elif key in ["ipv4_address", "autoconfiguration_ipv4_address", "ip_address", "autoconfiguration_ip_address"]: + ipv4_address_dict = _parse_ipv4_address(value, key, line_iter) + adapter["ipv4_addresses"].append(ipv4_address_dict) + elif key == "connection_specific_dns_suffix_search_list": + if value: + adapter["connection_specific_dns_suffix_search_list"].append(value) + # Process additional connection specific dns suffix search list entries + _parse_additional_entries(adapter["connection_specific_dns_suffix_search_list"], line_iter) + elif key == "default_gateway": + if value: + adapter["default_gateways"].append(value) + # Process additional gateways + _parse_additional_entries(adapter["default_gateways"], line_iter) + elif key == "dns_servers": + if value: + adapter["dns_servers"].append(value) + # Process additional DNS servers + _parse_additional_entries(adapter["dns_servers"], line_iter) + elif key == "subnet_mask": + # Subnet Mask should be associated with the last IPv4 address + if adapter["ipv4_addresses"]: + adapter["ipv4_addresses"][-1]["subnet_mask"] = value + else: + # Store unrecognized fields in extras + adapter["extras"].append({key: value}) + +def _parse_ipv6_address(value): + # Handle multiple status indicators + match = re.match(r"([^\(]+)\((.*)\)", value) if value else None + if match: + address = match.group(1).strip() + status = match.group(2).strip('()') + else: + address = value + status = None + return { + "address": address, + "status": status + } + +def _parse_ipv4_address(value, key, line_iter): + # Handle autoconfigured status + match = re.match(r"([^\(]+)\((.*)\)", value) if value else None + if match: + address = match.group(1).strip() + status = match.group(2).strip('()') + autoconfigured = 'autoconfigured' if 'autoconfiguration' in key or 'autoconfigured' in status else None + else: + address = value + status = None + autoconfigured = 'autoconfigured' if 'autoconfiguration' in key else None + # Get subnet mask + subnet_mask = None + # Peek ahead for "Subnet Mask" line + try: + next_line = next(line_iter) + next_key, next_value = _parse_line(next_line) + if next_key == "subnet_mask": + subnet_mask = next_value + else: + # If it's not "Subnet Mask", put it back into the iterator + line_iter.pushback(next_line) + except StopIteration: + pass + return { + "address": address, + "subnet_mask": subnet_mask, + "autoconfigured": autoconfigured, + "status": status + } + +def _parse_additional_entries(entry_list, line_iter): + # Process additional lines that belong to the current entry (e.g., additional DNS servers, DNS Suffix Search List) + while True: + try: + next_line = next(line_iter) + if not next_line.strip(): + continue # Skip empty lines + + # Check if the line is indented (starts with whitespace) + if re.match(r"^\s\s\s\s", next_line): + # It's an indented line; append the stripped line to entry_list + entry_list.append(next_line.strip()) + else: + # Not an indented line; push it back and exit + line_iter.pushback(next_line) + break + except StopIteration: + break \ No newline at end of file diff --git a/tests/fixtures/windows/windows-10/ipconfig.json b/tests/fixtures/windows/windows-10/ipconfig.json new file mode 100644 index 00000000..e9fbd94c --- /dev/null +++ b/tests/fixtures/windows/windows-10/ipconfig.json @@ -0,0 +1,133 @@ +{ + "host_name": "DESKTOP-WIN10-PRO", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "tailff123.ts.net", + "internal.companyname.com" + ], + "adapters": [ + { + "name_long": "Unknown adapter Tailscale", + "name": "Tailscale", + "type": "Unknown", + "connection_specific_dns_suffix": "tailff123.ts.net", + "connection_specific_dns_suffix_search_list": [ + "tailff123.ts.net" + ], + "description": "Tailscale Tunnel", + "physical_address": null, + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::99d0:ec2d:b2e7:536b", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "100.115.71.66", + "subnet_mask": "255.255.255.255", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [ + "fec0:0:0:ffff::1%1", + "fec0:0:0:ffff::2%1", + "fec0:0:0:ffff::3%1" + ], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": "internal.companyname.com", + "connection_specific_dns_suffix_search_list": [], + "description": "ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2", + "physical_address": "F8-E4-3B-AD-F2-6D", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::c936:c2db:79ad:e1c6", + "prefix_length": 16, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "10.50.13.132", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "10.50.13.1" + ], + "dhcp_server": "10.50.13.1", + "dhcpv6_iaid": "351866565", + "dhcpv6_client_duid": "00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1", + "dns_servers": [ + "10.50.13.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-23T02:31:46", + "lease_obtained": "2023-06-22T10:39:04", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "1C-C1-0C-C3-25-B4", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-10/ipconfig.out b/tests/fixtures/windows/windows-10/ipconfig.out new file mode 100644 index 00000000..4630a700 --- /dev/null +++ b/tests/fixtures/windows/windows-10/ipconfig.out @@ -0,0 +1,57 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-WIN10-PRO + Primary Dns Suffix . . . . . . . : + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : tailff123.ts.net + internal.companyname.com + +Unknown adapter Tailscale: + + Connection-specific DNS Suffix . : tailff123.ts.net + Description . . . . . . . . . . . : Tailscale Tunnel + Physical Address. . . . . . . . . : + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes + IPv6 Address. . . . . . . . . . . : fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2(Preferred) + Link-local IPv6 Address . . . . . : fe80::99d0:ec2d:b2e7:536b%8(Preferred) + IPv4 Address. . . . . . . . . . . : 100.115.71.66(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.255 + Default Gateway . . . . . . . . . : + DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1 + fec0:0:0:ffff::2%1 + fec0:0:0:ffff::3%1 + NetBIOS over Tcpip. . . . . . . . : Enabled + Connection-specific DNS Suffix Search List : + tailff123.ts.net + +Ethernet adapter Ethernet 2: + + Connection-specific DNS Suffix . : internal.companyname.com + Description . . . . . . . . . . . : ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2 + Physical Address. . . . . . . . . : F8-E4-3B-AD-F2-6D + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::c936:c2db:79ad:e1c6%16(Preferred) + IPv4 Address. . . . . . . . . . . : 10.50.13.132(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, June 22, 2023 10:39:04 AM + Lease Expires . . . . . . . . . . : Monday, September 23, 2024 2:31:46 AM + Default Gateway . . . . . . . . . : 10.50.13.1 + DHCP Server . . . . . . . . . . . : 10.50.13.1 + DHCPv6 IAID . . . . . . . . . . . : 351866565 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1 + DNS Servers . . . . . . . . . . . : 10.50.13.1 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Ethernet adapter Bluetooth Network Connection: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network) + Physical Address. . . . . . . . . : 1C-C1-0C-C3-25-B4 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-11/ipconfig.json b/tests/fixtures/windows/windows-11/ipconfig.json new file mode 100644 index 00000000..5976d916 --- /dev/null +++ b/tests/fixtures/windows/windows-11/ipconfig.json @@ -0,0 +1,326 @@ +{ + "host_name": "DESKTOP-WIN11-HOME", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "localdomain" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet", + "name": "Ethernet", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) I211 Gigabit Network Connection", + "physical_address": "24-4B-FE-AB-43-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Realtek PCIe 2.5GbE Family Controller", + "physical_address": "24-4B-FE-57-3D-F2", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", + "name": "OpenVPN Data Channel Offload for NordVPN", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "OpenVPN Data Channel Offload", + "physical_address": null, + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "TAP-NordVPN Windows Adapter V9", + "physical_address": "00-FF-4C-F4-5E-49", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 1", + "name": "Local Area Connection* 1", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter", + "physical_address": "A8-7E-EA-5A-7F-DE", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 2", + "name": "Local Area Connection* 2", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", + "physical_address": "AA-7E-EA-F3-64-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet1", + "name": "VMware Network Adapter VMnet1", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet1", + "physical_address": "00-50-56-CC-27-73", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::f47d:9c7f:69dc:591e", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.181.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.181.254", + "dhcpv6_iaid": "771772502", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet8", + "name": "VMware Network Adapter VMnet8", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet8", + "physical_address": "00-50-56-C9-A3-78", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4551:bf0d:59dd:a4f0", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.213.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.213.254", + "dhcpv6_iaid": "788549718", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": "192.168.213.2", + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Wi-Fi", + "name": "Wi-Fi", + "type": "Wireless LAN", + "connection_specific_dns_suffix": "localdomain", + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) Wi-Fi 6 AX200 160MHz", + "physical_address": "A8-7E-EA-55-26-B0", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", + "status": "Preferred" + } + ], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4fae:1380:5a1b:8b6b", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.1.169", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.1.1" + ], + "dhcp_server": "192.168.1.1", + "dhcpv6_iaid": "162037482", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [ + "192.168.1.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-20T08:31:30", + "lease_obtained": "2024-09-19T08:31:30", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "A8-7E-EA-43-23-14", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-11/ipconfig.out b/tests/fixtures/windows/windows-11/ipconfig.out new file mode 100644 index 00000000..ab7d63f1 --- /dev/null +++ b/tests/fixtures/windows/windows-11/ipconfig.out @@ -0,0 +1,130 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-WIN11-HOME + Primary Dns Suffix . . . . . . . : + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : localdomain + +Ethernet adapter Ethernet: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) I211 Gigabit Network Connection + Physical Address. . . . . . . . . : 24-4B-FE-AB-43-C3 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Ethernet adapter Ethernet 2: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Realtek PCIe 2.5GbE Family Controller + Physical Address. . . . . . . . . : 24-4B-FE-57-3D-F2 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Unknown adapter OpenVPN Data Channel Offload for NordVPN: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : OpenVPN Data Channel Offload + Physical Address. . . . . . . . . : + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Unknown adapter Local Area Connection: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : TAP-NordVPN Windows Adapter V9 + Physical Address. . . . . . . . . : 00-FF-4C-F4-5E-49 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Wireless LAN adapter Local Area Connection* 1: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter + Physical Address. . . . . . . . . : A8-7E-EA-5A-7F-DE + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Wireless LAN adapter Local Area Connection* 2: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter #2 + Physical Address. . . . . . . . . : AA-7E-EA-F3-64-C3 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + +Ethernet adapter VMware Network Adapter VMnet1: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMnet1 + Physical Address. . . . . . . . . : 00-50-56-CC-27-73 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::f47d:9c7f:69dc:591e%8(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.181.1(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, September 19, 2024 8:31:29 AM + Lease Expires . . . . . . . . . . : Thursday, September 19, 2024 6:01:29 PM + Default Gateway . . . . . . . . . : + DHCP Server . . . . . . . . . . . : 192.168.181.254 + DHCPv6 IAID . . . . . . . . . . . : 771772502 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Ethernet adapter VMware Network Adapter VMnet8: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMnet8 + Physical Address. . . . . . . . . : 00-50-56-C9-A3-78 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::4551:bf0d:59dd:a4f0%10(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.213.1(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, September 19, 2024 8:31:29 AM + Lease Expires . . . . . . . . . . : Thursday, September 19, 2024 6:01:29 PM + Default Gateway . . . . . . . . . : + DHCP Server . . . . . . . . . . . : 192.168.213.254 + DHCPv6 IAID . . . . . . . . . . . : 788549718 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6 + Primary WINS Server . . . . . . . : 192.168.213.2 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Wireless LAN adapter Wi-Fi: + + Connection-specific DNS Suffix . : localdomain + Description . . . . . . . . . . . : Intel(R) Wi-Fi 6 AX200 160MHz + Physical Address. . . . . . . . . : A8-7E-EA-55-26-B0 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + IPv6 Address. . . . . . . . . . . : fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08(Preferred) + Temporary IPv6 Address. . . . . . : fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef(Preferred) + Link-local IPv6 Address . . . . . : fe80::4fae:1380:5a1b:8b6b%11(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.1.169(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Thursday, September 19, 2024 8:31:30 AM + Lease Expires . . . . . . . . . . : Friday, September 20, 2024 8:31:30 AM + Default Gateway . . . . . . . . . : 192.168.1.1 + DHCP Server . . . . . . . . . . . : 192.168.1.1 + DHCPv6 IAID . . . . . . . . . . . : 162037482 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6 + DNS Servers . . . . . . . . . . . : 192.168.1.1 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Ethernet adapter Bluetooth Network Connection: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network) + Physical Address. . . . . . . . . : A8-7E-EA-43-23-14 + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-2008/ipconfig.json b/tests/fixtures/windows/windows-2008/ipconfig.json new file mode 100644 index 00000000..93935d12 --- /dev/null +++ b/tests/fixtures/windows/windows-2008/ipconfig.json @@ -0,0 +1,80 @@ +{ + "host_name": "WIN-SERVER8", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [], + "adapters": [ + { + "name_long": "Ethernet adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) PRO/1000 MT Network Connection", + "physical_address": "00-0C-29-76-C8-D0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::9595:e8d9:b190:ecac", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.23.154", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.23.1" + ], + "dhcp_server": null, + "dhcpv6_iaid": "234884137", + "dhcpv6_client_duid": "00-01-00-01-2D-32-79-97-00-0C-29-76-C8-D0", + "dns_servers": [ + "192.168.23.151" + ], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Tunnel adapter isatap.{F856FDB3-CE70-489D-A231-704790DC1351}", + "name": "isatap.{F856FDB3-CE70-489D-A231-704790DC1351}", + "type": "Tunnel", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft ISATAP Adapter", + "physical_address": "00-00-00-00-00-00-00-E0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-2008/ipconfig.out b/tests/fixtures/windows/windows-2008/ipconfig.out new file mode 100644 index 00000000..89f71d46 --- /dev/null +++ b/tests/fixtures/windows/windows-2008/ipconfig.out @@ -0,0 +1,33 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : WIN-SERVER8 + Primary Dns Suffix . . . . . . . : + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + +Ethernet adapter Local Area Connection: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection + Physical Address. . . . . . . . . : 00-0C-29-76-C8-D0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::9595:e8d9:b190:ecac%11(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.23.154(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Default Gateway . . . . . . . . . : 192.168.23.1 + DHCPv6 IAID . . . . . . . . . . . : 234884137 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2D-32-79-97-00-0C-29-76-C8-D0 + DNS Servers . . . . . . . . . . . : 192.168.23.151 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Tunnel adapter isatap.{F856FDB3-CE70-489D-A231-704790DC1351}: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft ISATAP Adapter + Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-2016/ipconfig.json b/tests/fixtures/windows/windows-2016/ipconfig.json new file mode 100644 index 00000000..b590bc69 --- /dev/null +++ b/tests/fixtures/windows/windows-2016/ipconfig.json @@ -0,0 +1,82 @@ +{ + "host_name": "WIN-SERVER16", + "primary_dns_suffix": "somecompany.corp", + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "somecompany.corp" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet0", + "name": "Ethernet0", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) 82574L Gigabit Network Connection", + "physical_address": "00-0C-29-D6-12-2E", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::40c:2f5f:6658:9ec3", + "prefix_length": 2, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.22.153", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.22.1" + ], + "dhcp_server": null, + "dhcpv6_iaid": "50334761", + "dhcpv6_client_duid": "00-01-00-01-29-4D-1C-4C-00-0C-29-A3-37-4E", + "dns_servers": [ + "192.168.22.151" + ], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Tunnel adapter isatap.{17A4D79E-85D7-47FC-8972-ABBD8B58DC71}", + "name": "isatap.{17A4D79E-85D7-47FC-8972-ABBD8B58DC71}", + "type": "Tunnel", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft ISATAP Adapter #2", + "physical_address": "00-00-00-00-00-00-00-E0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-2016/ipconfig.out b/tests/fixtures/windows/windows-2016/ipconfig.out new file mode 100644 index 00000000..dd8af052 --- /dev/null +++ b/tests/fixtures/windows/windows-2016/ipconfig.out @@ -0,0 +1,34 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : WIN-SERVER16 + Primary Dns Suffix . . . . . . . : somecompany.corp + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : somecompany.corp + +Ethernet adapter Ethernet0: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) 82574L Gigabit Network Connection + Physical Address. . . . . . . . . : 00-0C-29-D6-12-2E + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::40c:2f5f:6658:9ec3%2(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.22.153(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Default Gateway . . . . . . . . . : 192.168.22.1 + DHCPv6 IAID . . . . . . . . . . . : 50334761 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-29-4D-1C-4C-00-0C-29-A3-37-4E + DNS Servers . . . . . . . . . . . : 192.168.22.151 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Tunnel adapter isatap.{17A4D79E-85D7-47FC-8972-ABBD8B58DC71}: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft ISATAP Adapter #2 + Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-7/ipconfig.json b/tests/fixtures/windows/windows-7/ipconfig.json new file mode 100644 index 00000000..53b15bed --- /dev/null +++ b/tests/fixtures/windows/windows-7/ipconfig.json @@ -0,0 +1,82 @@ +{ + "host_name": "DESKTOP-WIN7", + "primary_dns_suffix": "somecompany.corp", + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "somecompany.corp" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) PRO/1000 MT Network Connection", + "physical_address": "00-0C-29-37-3B-4E", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::c447:d1ef:c29f:c44c", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.22.33", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.22.1" + ], + "dhcp_server": "192.168.22.1", + "dhcpv6_iaid": "234881473", + "dhcpv6_client_duid": "00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F", + "dns_servers": [ + "192.168.22.151" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-24T07:02:58", + "lease_obtained": "2024-09-20T12:13:59", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", + "name": "isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", + "type": "Tunnel", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft ISATAP Adapter", + "physical_address": "00-00-00-00-00-00-00-E0", + "dhcp_enabled": false, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-7/ipconfig.out b/tests/fixtures/windows/windows-7/ipconfig.out new file mode 100644 index 00000000..80226fa1 --- /dev/null +++ b/tests/fixtures/windows/windows-7/ipconfig.out @@ -0,0 +1,37 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-WIN7 + Primary Dns Suffix . . . . . . . : somecompany.corp + Node Type . . . . . . . . . . . . : Hybrid + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : somecompany.corp + +Ethernet adapter Local Area Connection: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection + Physical Address. . . . . . . . . : 00-0C-29-37-3B-4E + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + Link-local IPv6 Address . . . . . : fe80::c447:d1ef:c29f:c44c%10(Preferred) + IPv4 Address. . . . . . . . . . . : 192.168.22.33(Preferred) + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Lease Obtained. . . . . . . . . . : Friday, September 20, 2024 12:13:59 PM + Lease Expires . . . . . . . . . . : Tuesday, September 24, 2024 7:02:58 AM + Default Gateway . . . . . . . . . : 192.168.22.1 + DHCP Server . . . . . . . . . . . : 192.168.22.1 + DHCPv6 IAID . . . . . . . . . . . : 234881473 + DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F + DNS Servers . . . . . . . . . . . : 192.168.22.151 + NetBIOS over Tcpip. . . . . . . . : Enabled + +Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}: + + Media State . . . . . . . . . . . : Media disconnected + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Microsoft ISATAP Adapter + Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0 + DHCP Enabled. . . . . . . . . . . : No + Autoconfiguration Enabled . . . . : Yes diff --git a/tests/fixtures/windows/windows-xp/ipconfig.json b/tests/fixtures/windows/windows-xp/ipconfig.json new file mode 100644 index 00000000..5cf60b4a --- /dev/null +++ b/tests/fixtures/windows/windows-xp/ipconfig.json @@ -0,0 +1,51 @@ +{ + "host_name": "DESKTOP-PC4", + "primary_dns_suffix": "somecompany.corp", + "node_type": "Unknown", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "somecompany.corp", + "somecompany.xyz" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) PRO/1000 MT Network Connection", + "physical_address": "00-0C-29-25-B6-4D", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [ + { + "address": "192.168.22.135", + "subnet_mask": "255.255.255.0", + "status": null, + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.22.1" + ], + "dhcp_server": "192.168.22.1", + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [ + "192.168.22.151" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-22T22:31:26", + "lease_obtained": "2024-09-21T22:31:26", + "netbios_over_tcpip": null, + "media_state": null, + "extras": [] + } + ], + "extras": [] +} diff --git a/tests/fixtures/windows/windows-xp/ipconfig.out b/tests/fixtures/windows/windows-xp/ipconfig.out new file mode 100644 index 00000000..3ed618d0 --- /dev/null +++ b/tests/fixtures/windows/windows-xp/ipconfig.out @@ -0,0 +1,25 @@ + +Windows IP Configuration + + Host Name . . . . . . . . . . . . : DESKTOP-PC4 + Primary Dns Suffix . . . . . . . : somecompany.corp + Node Type . . . . . . . . . . . . : Unknown + IP Routing Enabled. . . . . . . . : No + WINS Proxy Enabled. . . . . . . . : No + DNS Suffix Search List. . . . . . : somecompany.corp + somecompany.xyz + +Ethernet adapter Local Area Connection: + + Connection-specific DNS Suffix . : + Description . . . . . . . . . . . : Intel(R) PRO/1000 MT Network Connection + Physical Address. . . . . . . . . : 00-0C-29-25-B6-4D + DHCP Enabled. . . . . . . . . . . : Yes + Autoconfiguration Enabled . . . . : Yes + IP Address. . . . . . . . . . . . : 192.168.22.135 + Subnet Mask . . . . . . . . . . . : 255.255.255.0 + Default Gateway . . . . . . . . . : 192.168.22.1 + DHCP Server . . . . . . . . . . . : 192.168.22.1 + DNS Servers . . . . . . . . . . . : 192.168.22.151 + Lease Obtained. . . . . . . . . . : Saturday, September 21, 2024 10:31:26 PM + Lease Expires . . . . . . . . . . : Sunday, September 22, 2024 10:31:26 PM diff --git a/tests/test_ipconfig.py b/tests/test_ipconfig.py new file mode 100644 index 00000000..544e8016 --- /dev/null +++ b/tests/test_ipconfig.py @@ -0,0 +1,48 @@ +import json +import os +import unittest +import jc.parsers.ipconfig + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + test_files = [ + "tests/fixtures/windows/windows-xp/ipconfig", + "tests/fixtures/windows/windows-7/ipconfig", + "tests/fixtures/windows/windows-10/ipconfig", + "tests/fixtures/windows/windows-11/ipconfig", + "tests/fixtures/windows/windows-2008/ipconfig", + "tests/fixtures/windows/windows-2016/ipconfig", + ] + + def setUp(self): + for tf in MyTests.test_files: + in_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.out") + out_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.json") + + with open(in_file, "r", encoding="utf-8") as f: + setattr(self, self.varName(tf), f.read()) + with open(out_file, "r", encoding="utf-8") as f: + setattr(self, self.varName(tf) + "_json", json.loads(f.read())) + + def varName(self, path): + return ( + path.replace("tests/fixtures/windows", "") + .replace("-", "_") + .replace("/", "_") + ) + + def test_windows_ipconfig(self): + """ + Test a sample Windows "ipconfig" command output + """ + for tf in MyTests.test_files: + in_var = getattr(self, self.varName(tf)) + out_var = getattr(self, self.varName(tf) + "_json") + + self.assertEqual(jc.parsers.ipconfig.parse(in_var, quiet=True), out_var) + + +if __name__ == "__main__": + unittest.main() From 95672c23b710748ea41fcaa8ca3d0b8815e96f37 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 18 Oct 2024 14:30:04 -0700 Subject: [PATCH 09/20] doc update --- CHANGELOG | 1 + README.md | 1 + completions/jc_bash_completion.sh | 4 +- completions/jc_zsh_completion.sh | 6 +- docs/parsers/bluetoothctl.md | 4 +- docs/parsers/ipconfig.md | 458 ++++++++++++++++++++++++++++++ docs/utils.md | 3 +- jc/parsers/ipconfig.py | 54 +++- man/jc.1 | 12 +- 9 files changed, 519 insertions(+), 24 deletions(-) create mode 100644 docs/parsers/ipconfig.md diff --git a/CHANGELOG b/CHANGELOG index 89dd9665..3e2fbafc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ jc changelog 20241018 v1.25.4 +- Add `ipconfig` command parser - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS diff --git a/README.md b/README.md index b81ca7dc..0ec8c9c9 100644 --- a/README.md +++ b/README.md @@ -218,6 +218,7 @@ option. | `--iostat` | `iostat` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat) | | `--iostat-s` | `iostat` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s) | | `--ip-address` | IPv4 and IPv6 Address string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_address) | +| `--ipconfig` | `ipconfig` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig) | | `--iptables` | `iptables` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables) | | `--ip-route` | `ip route` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_route) | | `--iw-scan` | `iw dev [device] scan` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan) | diff --git a/completions/jc_bash_completion.sh b/completions/jc_bash_completion.sh index 445cc14c..743347f4 100644 --- a/completions/jc_bash_completion.sh +++ b/completions/jc_bash_completion.sh @@ -3,8 +3,8 @@ _jc() local cur prev words cword jc_commands jc_parsers jc_options \ jc_about_options jc_about_mod_options jc_help_options jc_special_options - jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) - jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) + jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) + jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) jc_options=(--force-color -C --debug -d --monochrome -m --meta-out -M --pretty -p --quiet -q --raw -r --slurp -s --unbuffer -u --yaml-out -y) jc_about_options=(--about -a) jc_about_mod_options=(--pretty -p --yaml-out -y --monochrome -m --force-color -C) diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh index 13ed727a..46cd5672 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -9,7 +9,7 @@ _jc() { jc_help_options jc_help_options_describe \ jc_special_options jc_special_options_describe - jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) + jc_commands=(acpi airport apt-cache apt-get arp blkid bluetoothctl cbt certbot chage cksum crontab curl date debconf-show df dig dmidecode dpkg du efibootmgr env ethtool file findmnt finger free git gpg hciconfig host id ifconfig iostat ip ipconfig iptables iw iwconfig jobs last lastb ls lsattr lsb_release lsblk lsmod lsof lspci lsusb md5 md5sum mdadm mount mpstat needrestart netstat nmcli nsd-control ntpq os-prober pidstat ping ping6 pip pip3 postconf printenv ps route rpm rsync sfdisk sha1sum sha224sum sha256sum sha384sum sha512sum shasum ss ssh sshd stat sum swapon sysctl systemctl systeminfo timedatectl top tracepath tracepath6 traceroute traceroute6 tune2fs udevadm ufw uname update-alternatives upower uptime vdir veracrypt vmstat w wc who xrandr zipinfo zpool) jc_commands_describe=( 'acpi:run "acpi" command with magic syntax.' 'airport:run "airport" command with magic syntax.' @@ -46,6 +46,7 @@ _jc() { 'ifconfig:run "ifconfig" command with magic syntax.' 'iostat:run "iostat" command with magic syntax.' 'ip:run "ip" command with magic syntax.' + 'ipconfig:run "ipconfig" command with magic syntax.' 'iptables:run "iptables" command with magic syntax.' 'iw:run "iw" command with magic syntax.' 'iwconfig:run "iwconfig" command with magic syntax.' @@ -121,7 +122,7 @@ _jc() { 'zipinfo:run "zipinfo" command with magic syntax.' 'zpool:run "zpool" command with magic syntax.' ) - jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) + jc_parsers=(--acpi --airport --airport-s --apt-cache-show --apt-get-sqq --arp --asciitable --asciitable-m --blkid --bluetoothctl --cbt --cef --cef-s --certbot --chage --cksum --clf --clf-s --crontab --crontab-u --csv --csv-s --curl-head --date --datetime-iso --debconf-show --df --dig --dir --dmidecode --dpkg-l --du --efibootmgr --email-address --env --ethtool --file --find --findmnt --finger --free --fstab --git-log --git-log-s --git-ls-remote --gpg --group --gshadow --hash --hashsum --hciconfig --history --host --hosts --http-headers --id --ifconfig --ini --ini-dup --iostat --iostat-s --ip-address --ipconfig --iptables --ip-route --iw-scan --iwconfig --jar-manifest --jobs --jwt --kv --kv-dup --last --ls --ls-s --lsattr --lsb-release --lsblk --lsmod --lsof --lspci --lsusb --m3u --mdadm --mount --mpstat --mpstat-s --needrestart --netstat --nmcli --nsd-control --ntpq --openvpn --os-prober --os-release --passwd --path --path-list --pci-ids --pgpass --pidstat --pidstat-s --ping --ping-s --pip-list --pip-show --pkg-index-apk --pkg-index-deb --plist --postconf --proc --proc-buddyinfo --proc-cmdline --proc-consoles --proc-cpuinfo --proc-crypto --proc-devices --proc-diskstats --proc-filesystems --proc-interrupts --proc-iomem --proc-ioports --proc-loadavg --proc-locks --proc-meminfo --proc-modules --proc-mtrr --proc-pagetypeinfo --proc-partitions --proc-slabinfo --proc-softirqs --proc-stat --proc-swaps --proc-uptime --proc-version --proc-vmallocinfo --proc-vmstat --proc-zoneinfo --proc-driver-rtc --proc-net-arp --proc-net-dev --proc-net-dev-mcast --proc-net-if-inet6 --proc-net-igmp --proc-net-igmp6 --proc-net-ipv6-route --proc-net-netlink --proc-net-netstat --proc-net-packet --proc-net-protocols --proc-net-route --proc-net-tcp --proc-net-unix --proc-pid-fdinfo --proc-pid-io --proc-pid-maps --proc-pid-mountinfo --proc-pid-numa-maps --proc-pid-smaps --proc-pid-stat --proc-pid-statm --proc-pid-status --ps --resolve-conf --route --rpm-qi --rsync --rsync-s --semver --sfdisk --shadow --srt --ss --ssh-conf --sshd-conf --stat --stat-s --swapon --sysctl --syslog --syslog-s --syslog-bsd --syslog-bsd-s --systemctl --systemctl-lj --systemctl-ls --systemctl-luf --systeminfo --time --timedatectl --timestamp --toml --top --top-s --tracepath --traceroute --tune2fs --udevadm --ufw --ufw-appinfo --uname --update-alt-gs --update-alt-q --upower --uptime --url --ver --veracrypt --vmstat --vmstat-s --w --wc --who --x509-cert --x509-csr --xml --xrandr --yaml --zipinfo --zpool-iostat --zpool-status) jc_parsers_describe=( '--acpi:`acpi` command parser' '--airport:`airport -I` command parser' @@ -185,6 +186,7 @@ _jc() { '--iostat:`iostat` command parser' '--iostat-s:`iostat` command streaming parser' '--ip-address:IPv4 and IPv6 Address string parser' + '--ipconfig:`ipconfig` command parser' '--iptables:`iptables` command parser' '--ip-route:`ip route` command parser' '--iw-scan:`iw dev [device] scan` command parser' diff --git a/docs/parsers/bluetoothctl.md b/docs/parsers/bluetoothctl.md index d09e800f..fc82d38b 100644 --- a/docs/parsers/bluetoothctl.md +++ b/docs/parsers/bluetoothctl.md @@ -33,6 +33,8 @@ a controller and a device but there might be fields corresponding to one entity. Controller: [ { + "manufacturer": string, + "version": string, "name": string, "is_default": boolean, "is_public": boolean, @@ -134,4 +136,4 @@ Compatibility: linux Source: [`jc/parsers/bluetoothctl.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/bluetoothctl.py) -Version 1.2 by Jake Ob (iakopap at gmail.com) +Version 1.3 by Jake Ob (iakopap at gmail.com) diff --git a/docs/parsers/ipconfig.md b/docs/parsers/ipconfig.md new file mode 100644 index 00000000..c550f075 --- /dev/null +++ b/docs/parsers/ipconfig.md @@ -0,0 +1,458 @@ +[Home](https://kellyjonbrazil.github.io/jc/) + + +# jc.parsers.ipconfig + +jc - JSON Convert `ipconfig` command output parser + +Usage (cli): + + $ ipconfig /all | jc --ipconfig + $ ipconfig | jc --ipconfig + $ jc ipconfig /all + +Usage (module): + + import jc + result = jc.parse('ipconfig', ipconfig_command_output) + +Schema: + + { + "host_name": string, + "primary_dns_suffix": string, + "node_type": string, + "ip_routing_enabled": boolean, + "wins_proxy_enabled": boolean, + "dns_suffix_search_list": [ + string + ], + "adapters": [ + { + "name_long": string, + "name": string, + "type": string, + "connection_specific_dns_suffix": string, + "connection_specific_dns_suffix_search_list": [ + string + ] + "description": string, + "physical_address": string, + "dhcp_enabled": boolean, + "autoconfiguration_enabled": boolean, + "ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "temporary_ipv6_addresses": [ + { + "address": string, + "status": string, + }, + ], + "link_local_ipv6_addresses": [ + { + "address": string, + "status": string, + "prefix_length": int, + } + ], + "ipv4_addresses": [ + { + "address": string, # [2] + "subnet_mask": string, + "status": string, + "autoconfigured": boolean # [1] + } + ], + "default_gateways": [ + string + ], + "dhcp_server": null, + "dhcpv6_iaid": string, + "dhcpv6_client_duid": string, + "dns_servers": [ + string + ], + "primary_wins_server": string, + "lease_expires": string, # [0] + "lease_obtained": string, # [0] + "netbios_over_tcpip": boolean, + "media_state": string, + "extras": [ + string: string + ] + } + ], + "extras": [] + } + + Notes: + [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 + format date strings. if the value was unable to be parsed by + datetime, the fields will be in their raw form + [1] - 'autoconfigured' under 'ipv4_address' is only providing + indication if the ipv4 address was labeled as "Autoconfiguration + IPv4 Address" vs "IPv4 Address". It does not infer any + information from other fields + [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both + values are parsed to the 'ipv4_address' object for consistency + +Examples: + + $ ipconfig /all | jc --ipconfig -p + { + "host_name": "DESKTOP-WIN11-HOME", + "primary_dns_suffix": null, + "node_type": "Hybrid", + "ip_routing_enabled": false, + "wins_proxy_enabled": false, + "dns_suffix_search_list": [ + "localdomain" + ], + "adapters": [ + { + "name_long": "Ethernet adapter Ethernet", + "name": "Ethernet", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) I211 Gigabit Network Connection", + "physical_address": "24-4B-FE-AB-43-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter Ethernet 2", + "name": "Ethernet 2", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Realtek PCIe 2.5GbE Family Controller", + "physical_address": "24-4B-FE-57-3D-F2", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", + "name": "OpenVPN Data Channel Offload for NordVPN", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "OpenVPN Data Channel Offload", + "physical_address": null, + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Unknown adapter Local Area Connection", + "name": "Local Area Connection", + "type": "Unknown", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "TAP-NordVPN Windows Adapter V9", + "physical_address": "00-FF-4C-F4-5E-49", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 1", + "name": "Local Area Connection* 1", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter", + "physical_address": "A8-7E-EA-5A-7F-DE", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Local Area Connection* 2", + "name": "Local Area Connection* 2", + "type": "Wireless LAN", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", + "physical_address": "AA-7E-EA-F3-64-C3", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet1", + "name": "VMware Network Adapter VMnet1", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet1", + "physical_address": "00-50-56-CC-27-73", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::f47d:9c7f:69dc:591e", + "prefix_length": 8, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.181.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.181.254", + "dhcpv6_iaid": "771772502", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter VMware Network Adapter VMnet8", + "name": "VMware Network Adapter VMnet8", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "VMware Virtual Ethernet Adapter for VMnet8", + "physical_address": "00-50-56-C9-A3-78", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4551:bf0d:59dd:a4f0", + "prefix_length": 10, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.213.1", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [], + "dhcp_server": "192.168.213.254", + "dhcpv6_iaid": "788549718", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [], + "primary_wins_server": "192.168.213.2", + "lease_expires": "2024-09-19T18:01:29", + "lease_obtained": "2024-09-19T08:31:29", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Wireless LAN adapter Wi-Fi", + "name": "Wi-Fi", + "type": "Wireless LAN", + "connection_specific_dns_suffix": "localdomain", + "connection_specific_dns_suffix_search_list": [], + "description": "Intel(R) Wi-Fi 6 AX200 160MHz", + "physical_address": "A8-7E-EA-55-26-B0", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", + "status": "Preferred" + } + ], + "temporary_ipv6_addresses": [ + { + "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", + "status": "Preferred" + } + ], + "link_local_ipv6_addresses": [ + { + "address": "fe80::4fae:1380:5a1b:8b6b", + "prefix_length": 11, + "status": "Preferred" + } + ], + "ipv4_addresses": [ + { + "address": "192.168.1.169", + "subnet_mask": "255.255.255.0", + "status": "Preferred", + "autoconfigured": false + } + ], + "default_gateways": [ + "192.168.1.1" + ], + "dhcp_server": "192.168.1.1", + "dhcpv6_iaid": "162037482", + "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", + "dns_servers": [ + "192.168.1.1" + ], + "primary_wins_server": null, + "lease_expires": "2024-09-20T08:31:30", + "lease_obtained": "2024-09-19T08:31:30", + "netbios_over_tcpip": true, + "media_state": null, + "extras": [] + }, + { + "name_long": "Ethernet adapter Bluetooth Network Connection", + "name": "Bluetooth Network Connection", + "type": "Ethernet", + "connection_specific_dns_suffix": null, + "connection_specific_dns_suffix_search_list": [], + "description": "Bluetooth Device (Personal Area Network)", + "physical_address": "A8-7E-EA-43-23-14", + "dhcp_enabled": true, + "autoconfiguration_enabled": true, + "ipv6_addresses": [], + "temporary_ipv6_addresses": [], + "link_local_ipv6_addresses": [], + "ipv4_addresses": [], + "default_gateways": [], + "dhcp_server": null, + "dhcpv6_iaid": null, + "dhcpv6_client_duid": null, + "dns_servers": [], + "primary_wins_server": null, + "lease_expires": null, + "lease_obtained": null, + "netbios_over_tcpip": null, + "media_state": "Media disconnected", + "extras": [] + } + ], + "extras": [] + } + + + +### parse + +```python +def parse(data, raw=False, quiet=False) +``` + +Main text parsing function + +Parameters: + + data: (string) text data to parse + raw: (boolean) unprocessed output if True + quiet: (boolean) suppress warning messages if True + +Returns: + + Parsed dictionary. The raw and processed data structures are the same. + +### Parser Information +Compatibility: windows + +Source: [`jc/parsers/ipconfig.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ipconfig.py) + +Version 1.0 by joehacksalot (joehacksalot@gmail.com) diff --git a/docs/utils.md b/docs/utils.md index eb0df3a4..44718754 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -69,7 +69,8 @@ Parameters: binary: (boolean) `True` to use binary multiples of bytes (base-2) for ambiguous unit symbols and names, `False` to use decimal multiples of bytes (base-10). - posix_mode: Treat one-letter units (k, m, g, etc.) as binary. + posix_mode: (boolean) Treat one-letter units (k, m, g, etc.) as + binary. decimal_bias: (boolean) `True` to treat slightly ambiguous two- letter unit symbols ending in "i" (e.g. Ki, Gi) to use decimal multiples of bytes (base-10). `False` diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index 25ba615f..c63c1fbe 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -1,10 +1,10 @@ r"""jc - JSON Convert `ipconfig` command output parser - Usage (cli): $ ipconfig /all | jc --ipconfig $ ipconfig | jc --ipconfig + $ jc ipconfig /all Usage (module): @@ -85,12 +85,15 @@ } Notes: - [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 format date strings. if the value was unable - to be parsed by datetime, the fields will be in their raw form - [1] - 'autoconfigured' under 'ipv4_address' is only providing indication if the ipv4 address was labeled as - "Autoconfiguration IPv4 Address" vs "IPv4 Address". It does not infer any information from other fields - [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both values are parsed to the 'ipv4_address' - object for consistency + [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 + format date strings. if the value was unable to be parsed by + datetime, the fields will be in their raw form + [1] - 'autoconfigured' under 'ipv4_address' is only providing + indication if the ipv4 address was labeled as "Autoconfiguration + IPv4 Address" vs "IPv4 Address". It does not infer any + information from other fields + [2] - Windows XP uses 'IP Address' instead of 'IPv4 Address'. Both + values are parsed to the 'ipv4_address' object for consistency Examples: @@ -420,8 +423,7 @@ } ], "extras": [] - } - + } """ from datetime import datetime import re @@ -466,6 +468,7 @@ def parse(data, raw=False, quiet=False): return raw_output if raw else _process(raw_output) + def _process_ipv6_address(ip_address): address_split = ip_address["address"].split('%') try: @@ -484,6 +487,7 @@ def _process_ipv6_address(ip_address): "status": ip_address["status"] } + def _process_ipv4_address(ip_address): autoconfigured = True if ip_address.get("autoconfigured","") is not None and 'autoconfigured' in ip_address.get("autoconfigured","") else False subnet_mask = ip_address["subnet_mask"] @@ -494,6 +498,7 @@ def _process_ipv4_address(ip_address): "autoconfigured": autoconfigured } + def _process(proc_data): """ Final processing to conform to the schema. @@ -507,8 +512,7 @@ def _process(proc_data): Processed Dictionary. Structured data to conform to the schema. """ processed = proc_data - - + if "ip_routing_enabled" in processed and processed["ip_routing_enabled"] is not None: processed["ip_routing_enabled"] = (processed["ip_routing_enabled"].lower() == "yes") @@ -518,38 +522,49 @@ def _process(proc_data): for adapter in processed["adapters"]: if "dhcp_enabled" in adapter and adapter["dhcp_enabled"] is not None: adapter["dhcp_enabled"] = (adapter["dhcp_enabled"].lower() == "yes") + if "autoconfiguration_enabled" in adapter and adapter["autoconfiguration_enabled"] is not None: adapter["autoconfiguration_enabled"] = (adapter["autoconfiguration_enabled"].lower() == "yes") + if "netbios_over_tcpip" in adapter and adapter["netbios_over_tcpip"] is not None: adapter["netbios_over_tcpip"] = (adapter["netbios_over_tcpip"].lower() == "enabled") + if "lease_expires" in adapter and adapter["lease_expires"] is not None and adapter["lease_expires"] != "": try: adapter["lease_expires"] = datetime.strptime(adapter["lease_expires"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() except: pass # Leave date in raw format if not parseable + if "lease_obtained" in adapter and adapter["lease_obtained"] is not None and adapter["lease_obtained"] != "": try: adapter["lease_obtained"] = datetime.strptime(adapter["lease_obtained"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() except: pass # Leave date in raw format if not parseable + adapter["link_local_ipv6_addresses"] = [_process_ipv6_address(address) for address in adapter.get("link_local_ipv6_addresses", [])] adapter["ipv4_addresses"] = [_process_ipv4_address(address) for address in adapter.get("ipv4_addresses", [])] + return processed + class _PushbackIterator: def __init__(self, iterator): self.iterator = iterator self.pushback_stack = [] + def __iter__(self): return self + def __next__(self): if self.pushback_stack: return self.pushback_stack.pop() else: return next(self.iterator) + def pushback(self, value): self.pushback_stack.append(value) + def _parse(data): # Initialize the parsed output dictionary with all fields set to None or empty lists parse_output = { @@ -609,10 +624,12 @@ def _parse(data): return parse_output + def _is_adapter_start_line(line): # Detect adapter start lines, e.g., "Ethernet adapter Ethernet:" return re.match(r"^[^\s].*adapter.*:", line, re.IGNORECASE) + def _initialize_adapter(adapter_name): adapter_name_split = adapter_name.split(" adapter ", 1) if len(adapter_name_split) > 1: @@ -650,6 +667,7 @@ def _initialize_adapter(adapter_name): "extras": [] # To store unrecognized fields } + def _parse_line(line): # Split the line into key and value using ':' or multiple spaces key_value = re.split(r":", line.strip(), 1) @@ -662,6 +680,7 @@ def _parse_line(line): else: return None, None + def _parse_header_line(result, key, value, line_iter): if key in ["host_name", "primary_dns_suffix", "node_type", "ip_routing_enabled", "wins_proxy_enabled"]: result[key] = value @@ -674,11 +693,13 @@ def _parse_header_line(result, key, value, line_iter): # Store unrecognized fields in extras result["extras"].append({key: value}) + def _parse_adapter_line(adapter, key, value, line_iter): if key in ["connection_specific_dns_suffix","media_state", "description", "physical_address", "dhcp_enabled", "autoconfiguration_enabled", "dhcpv6_iaid", "dhcpv6_client_duid", "netbios_over_tcpip", "dhcp_server", "lease_obtained", "lease_expires", "primary_wins_server"]: adapter[key] = value + elif key in ["ipv6_address", "temporary_ipv6_address", "link_local_ipv6_address"]: address_dict = _parse_ipv6_address(value) if key == "ipv6_address": @@ -687,32 +708,39 @@ def _parse_adapter_line(adapter, key, value, line_iter): adapter["temporary_ipv6_addresses"].append(address_dict) elif key == "link_local_ipv6_address": adapter["link_local_ipv6_addresses"].append(address_dict) + elif key in ["ipv4_address", "autoconfiguration_ipv4_address", "ip_address", "autoconfiguration_ip_address"]: ipv4_address_dict = _parse_ipv4_address(value, key, line_iter) adapter["ipv4_addresses"].append(ipv4_address_dict) + elif key == "connection_specific_dns_suffix_search_list": if value: adapter["connection_specific_dns_suffix_search_list"].append(value) # Process additional connection specific dns suffix search list entries _parse_additional_entries(adapter["connection_specific_dns_suffix_search_list"], line_iter) + elif key == "default_gateway": if value: adapter["default_gateways"].append(value) # Process additional gateways _parse_additional_entries(adapter["default_gateways"], line_iter) + elif key == "dns_servers": if value: adapter["dns_servers"].append(value) # Process additional DNS servers _parse_additional_entries(adapter["dns_servers"], line_iter) + elif key == "subnet_mask": # Subnet Mask should be associated with the last IPv4 address if adapter["ipv4_addresses"]: adapter["ipv4_addresses"][-1]["subnet_mask"] = value + else: # Store unrecognized fields in extras adapter["extras"].append({key: value}) + def _parse_ipv6_address(value): # Handle multiple status indicators match = re.match(r"([^\(]+)\((.*)\)", value) if value else None @@ -727,6 +755,7 @@ def _parse_ipv6_address(value): "status": status } + def _parse_ipv4_address(value, key, line_iter): # Handle autoconfigured status match = re.match(r"([^\(]+)\((.*)\)", value) if value else None @@ -758,6 +787,7 @@ def _parse_ipv4_address(value, key, line_iter): "status": status } + def _parse_additional_entries(entry_list, line_iter): # Process additional lines that belong to the current entry (e.g., additional DNS servers, DNS Suffix Search List) while True: @@ -775,4 +805,4 @@ def _parse_additional_entries(entry_list, line_iter): line_iter.pushback(next_line) break except StopIteration: - break \ No newline at end of file + break diff --git a/man/jc.1 b/man/jc.1 index 9049d40d..722cc7f8 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2024-09-22 1.25.4 "JSON Convert" +.TH jc 1 2024-10-18 1.25.4 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings @@ -347,6 +347,11 @@ INI with duplicate key file parser \fB--ip-address\fP IPv4 and IPv6 Address string parser +.TP +.B +\fB--ipconfig\fP +`ipconfig` command parser + .TP .B \fB--iptables\fP @@ -507,11 +512,6 @@ openvpn-status.log file parser \fB--os-release\fP `/etc/os-release` file parser -.TP -.B -\fB--pacman\fP -`pacman` command parser - .TP .B \fB--passwd\fP From 6072ea0ec76efeb3a34635b1321c4b49eced2cd0 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 18 Oct 2024 14:34:29 -0700 Subject: [PATCH 10/20] doc update --- CHANGELOG | 2 +- README.md | 2 +- completions/jc_zsh_completion.sh | 2 +- docs/parsers/ipconfig.md | 2 +- jc/parsers/ipconfig.py | 4 ++-- man/jc.1 | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3e2fbafc..575407f9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ jc changelog 20241018 v1.25.4 -- Add `ipconfig` command parser +- Add `ipconfig` command parser (`ipconfig` for Windows) - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS diff --git a/README.md b/README.md index 0ec8c9c9..555b908f 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ option. | `--iostat` | `iostat` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat) | | `--iostat-s` | `iostat` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s) | | `--ip-address` | IPv4 and IPv6 Address string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_address) | -| `--ipconfig` | `ipconfig` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig) | +| `--ipconfig` | `ipconfig` Windows command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig) | | `--iptables` | `iptables` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables) | | `--ip-route` | `ip route` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_route) | | `--iw-scan` | `iw dev [device] scan` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan) | diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh index 46cd5672..c81d5dbd 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -186,7 +186,7 @@ _jc() { '--iostat:`iostat` command parser' '--iostat-s:`iostat` command streaming parser' '--ip-address:IPv4 and IPv6 Address string parser' - '--ipconfig:`ipconfig` command parser' + '--ipconfig:`ipconfig` Windows command parser' '--iptables:`iptables` command parser' '--ip-route:`ip route` command parser' '--iw-scan:`iw dev [device] scan` command parser' diff --git a/docs/parsers/ipconfig.md b/docs/parsers/ipconfig.md index c550f075..ca44e8cb 100644 --- a/docs/parsers/ipconfig.md +++ b/docs/parsers/ipconfig.md @@ -3,7 +3,7 @@ # jc.parsers.ipconfig -jc - JSON Convert `ipconfig` command output parser +jc - JSON Convert `ipconfig` Windows command output parser Usage (cli): diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index c63c1fbe..318b1353 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -1,4 +1,4 @@ -r"""jc - JSON Convert `ipconfig` command output parser +r"""jc - JSON Convert `ipconfig` Windows command output parser Usage (cli): @@ -433,7 +433,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" version = '1.0' - description = '`ipconfig` command parser' + description = '`ipconfig` Windows command parser' author = 'joehacksalot' author_email = 'joehacksalot@gmail.com' compatible = ['windows'] diff --git a/man/jc.1 b/man/jc.1 index 722cc7f8..a5f2efcb 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -350,7 +350,7 @@ IPv4 and IPv6 Address string parser .TP .B \fB--ipconfig\fP -`ipconfig` command parser +`ipconfig` Windows command parser .TP .B From 26133261f9c470885ea7d1174fd2e9c3db62ac65 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 20 Oct 2024 09:45:08 -0700 Subject: [PATCH 11/20] use jc.utils.timestamp() for datetime conversions --- jc/parsers/ipconfig.py | 33 +- jc/utils.py | 1 + .../fixtures/windows/windows-10/ipconfig.json | 134 +------ .../fixtures/windows/windows-11/ipconfig.json | 327 +----------------- .../fixtures/windows/windows-7/ipconfig.json | 83 +---- .../fixtures/windows/windows-xp/ipconfig.json | 52 +-- tests/test_jc_utils.py | 2 + 7 files changed, 24 insertions(+), 608 deletions(-) diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index 318b1353..7f421b5d 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -72,8 +72,12 @@ string ], "primary_wins_server": string, - "lease_expires": string, # [0] - "lease_obtained": string, # [0] + "lease_expires": string, + "lease_expires_epoch": integer, # [0] + "lease_expires_iso": string, + "lease_obtained": string, + "lease_obtained_epoch": integer, # [0] + "lease_obtained_iso": string, "netbios_over_tcpip": boolean, "media_state": string, "extras": [ @@ -85,9 +89,8 @@ } Notes: - [0] - 'lease_expires' and 'lease_obtained' are parsed to ISO8601 - format date strings. if the value was unable to be parsed by - datetime, the fields will be in their raw form + [0] - The epoch calculated timestamp field is naive. (i.e. based on + the local time of the system the parser is run on) [1] - 'autoconfigured' under 'ipv4_address' is only providing indication if the ipv4 address was labeled as "Autoconfiguration IPv4 Address" vs "IPv4 Address". It does not infer any @@ -529,17 +532,15 @@ def _process(proc_data): if "netbios_over_tcpip" in adapter and adapter["netbios_over_tcpip"] is not None: adapter["netbios_over_tcpip"] = (adapter["netbios_over_tcpip"].lower() == "enabled") - if "lease_expires" in adapter and adapter["lease_expires"] is not None and adapter["lease_expires"] != "": - try: - adapter["lease_expires"] = datetime.strptime(adapter["lease_expires"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() - except: - pass # Leave date in raw format if not parseable - - if "lease_obtained" in adapter and adapter["lease_obtained"] is not None and adapter["lease_obtained"] != "": - try: - adapter["lease_obtained"] = datetime.strptime(adapter["lease_obtained"], "%A, %B %d, %Y %I:%M:%S %p").isoformat() - except: - pass # Leave date in raw format if not parseable + if "lease_expires" in adapter and adapter["lease_expires"]: + ts = jc.utils.timestamp(adapter['lease_expires'], format_hint=(1720,)) + adapter["lease_expires_epoch"] = ts.naive + adapter["lease_expires_iso"] = ts.iso + + if "lease_obtained" in adapter and adapter["lease_obtained"]: + ts = jc.utils.timestamp(adapter['lease_obtained'], format_hint=(1720,)) + adapter["lease_obtained_epoch"] = ts.naive + adapter["lease_obtained_iso"] = ts.iso adapter["link_local_ipv6_addresses"] = [_process_ipv6_address(address) for address in adapter.get("link_local_ipv6_addresses", [])] adapter["ipv4_addresses"] = [_process_ipv4_address(address) for address in adapter.get("ipv4_addresses", [])] diff --git a/jc/utils.py b/jc/utils.py index cdd26e52..4b190142 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -696,6 +696,7 @@ def _parse_dt( {'id': 1700, 'format': '%m/%d/%Y, %I:%M:%S %p', 'locale': None}, # Windows english format wint non-UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC-0600) {'id': 1705, 'format': '%m/%d/%Y, %I:%M:%S %p %Z', 'locale': None}, # Windows english format with UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC) {'id': 1710, 'format': '%m/%d/%Y, %I:%M:%S %p UTC%z', 'locale': None}, # Windows english format with UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC+0000) + {'id': 1720, 'format': '%A, %B %d, %Y %I:%M:%S %p', 'locale': None}, # ipconfig cli output format: Thursday, June 22, 2023 10:39:04 AM {'id': 1750, 'format': '%Y/%m/%d-%H:%M:%S.%f', 'locale': None}, # Google Big Table format with no timezone: 1970/01/01-01:00:00.000000 {'id': 1755, 'format': '%Y/%m/%d-%H:%M:%S.%f%z', 'locale': None}, # Google Big Table format with timezone: 1970/01/01-01:00:00.000000+00:00 {'id': 1760, 'format': '%Y-%m-%d %H:%M:%S%z', 'locale': None}, # certbot format with timezone: 2023-06-12 01:35:30+00:00 diff --git a/tests/fixtures/windows/windows-10/ipconfig.json b/tests/fixtures/windows/windows-10/ipconfig.json index e9fbd94c..942de7f0 100644 --- a/tests/fixtures/windows/windows-10/ipconfig.json +++ b/tests/fixtures/windows/windows-10/ipconfig.json @@ -1,133 +1 @@ -{ - "host_name": "DESKTOP-WIN10-PRO", - "primary_dns_suffix": null, - "node_type": "Hybrid", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "tailff123.ts.net", - "internal.companyname.com" - ], - "adapters": [ - { - "name_long": "Unknown adapter Tailscale", - "name": "Tailscale", - "type": "Unknown", - "connection_specific_dns_suffix": "tailff123.ts.net", - "connection_specific_dns_suffix_search_list": [ - "tailff123.ts.net" - ], - "description": "Tailscale Tunnel", - "physical_address": null, - "dhcp_enabled": false, - "autoconfiguration_enabled": true, - "ipv6_addresses": [ - { - "address": "fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2", - "status": "Preferred" - } - ], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::99d0:ec2d:b2e7:536b", - "prefix_length": 8, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "100.115.71.66", - "subnet_mask": "255.255.255.255", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [ - "fec0:0:0:ffff::1%1", - "fec0:0:0:ffff::2%1", - "fec0:0:0:ffff::3%1" - ], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter Ethernet 2", - "name": "Ethernet 2", - "type": "Ethernet", - "connection_specific_dns_suffix": "internal.companyname.com", - "connection_specific_dns_suffix_search_list": [], - "description": "ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2", - "physical_address": "F8-E4-3B-AD-F2-6D", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::c936:c2db:79ad:e1c6", - "prefix_length": 16, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "10.50.13.132", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [ - "10.50.13.1" - ], - "dhcp_server": "10.50.13.1", - "dhcpv6_iaid": "351866565", - "dhcpv6_client_duid": "00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1", - "dns_servers": [ - "10.50.13.1" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-23T02:31:46", - "lease_obtained": "2023-06-22T10:39:04", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter Bluetooth Network Connection", - "name": "Bluetooth Network Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Bluetooth Device (Personal Area Network)", - "physical_address": "1C-C1-0C-C3-25-B4", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-WIN10-PRO","primary_dns_suffix":null,"node_type":"Hybrid","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["tailff123.ts.net","internal.companyname.com"],"adapters":[{"name_long":"Unknown adapter Tailscale","name":"Tailscale","type":"Unknown","connection_specific_dns_suffix":"tailff123.ts.net","connection_specific_dns_suffix_search_list":["tailff123.ts.net"],"description":"Tailscale Tunnel","physical_address":null,"dhcp_enabled":false,"autoconfiguration_enabled":true,"ipv6_addresses":[{"address":"fd7a:115c:a1e0:ab12:4843:cd96:6293:47b2","status":"Preferred"}],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::99d0:ec2d:b2e7:536b","prefix_length":8,"status":"Preferred"}],"ipv4_addresses":[{"address":"100.115.71.66","subnet_mask":"255.255.255.255","status":"Preferred","autoconfigured":false}],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":["fec0:0:0:ffff::1%1","fec0:0:0:ffff::2%1","fec0:0:0:ffff::3%1"],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":true,"media_state":null,"extras":[]},{"name_long":"Ethernet adapter Ethernet 2","name":"Ethernet 2","type":"Ethernet","connection_specific_dns_suffix":"internal.companyname.com","connection_specific_dns_suffix_search_list":[],"description":"ASIX AX88179 USB 3.0 to Gigabit Ethernet Adapter #2","physical_address":"F8-E4-3B-AD-F2-6D","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::c936:c2db:79ad:e1c6","prefix_length":16,"status":"Preferred"}],"ipv4_addresses":[{"address":"10.50.13.132","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":["10.50.13.1"],"dhcp_server":"10.50.13.1","dhcpv6_iaid":"351866565","dhcpv6_client_duid":"00-01-00-01-2A-15-C3-11-1C-D3-05-F1-58-E1","dns_servers":["10.50.13.1"],"primary_wins_server":null,"lease_expires":"Monday, September 23, 2024 2:31:46 AM","lease_obtained":"Thursday, June 22, 2023 10:39:04 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1727083906,"lease_expires_iso":"2024-09-23T02:31:46","lease_obtained_epoch":1687455544,"lease_obtained_iso":"2023-06-22T10:39:04"},{"name_long":"Ethernet adapter Bluetooth Network Connection","name":"Bluetooth Network Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Bluetooth Device (Personal Area Network)","physical_address":"1C-C1-0C-C3-25-B4","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]}],"extras":[]} diff --git a/tests/fixtures/windows/windows-11/ipconfig.json b/tests/fixtures/windows/windows-11/ipconfig.json index 5976d916..3a1257ec 100644 --- a/tests/fixtures/windows/windows-11/ipconfig.json +++ b/tests/fixtures/windows/windows-11/ipconfig.json @@ -1,326 +1 @@ -{ - "host_name": "DESKTOP-WIN11-HOME", - "primary_dns_suffix": null, - "node_type": "Hybrid", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "localdomain" - ], - "adapters": [ - { - "name_long": "Ethernet adapter Ethernet", - "name": "Ethernet", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) I211 Gigabit Network Connection", - "physical_address": "24-4B-FE-AB-43-C3", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Ethernet adapter Ethernet 2", - "name": "Ethernet 2", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Realtek PCIe 2.5GbE Family Controller", - "physical_address": "24-4B-FE-57-3D-F2", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Unknown adapter OpenVPN Data Channel Offload for NordVPN", - "name": "OpenVPN Data Channel Offload for NordVPN", - "type": "Unknown", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "OpenVPN Data Channel Offload", - "physical_address": null, - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Unknown adapter Local Area Connection", - "name": "Local Area Connection", - "type": "Unknown", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "TAP-NordVPN Windows Adapter V9", - "physical_address": "00-FF-4C-F4-5E-49", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Wireless LAN adapter Local Area Connection* 1", - "name": "Local Area Connection* 1", - "type": "Wireless LAN", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Microsoft Wi-Fi Direct Virtual Adapter", - "physical_address": "A8-7E-EA-5A-7F-DE", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Wireless LAN adapter Local Area Connection* 2", - "name": "Local Area Connection* 2", - "type": "Wireless LAN", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Microsoft Wi-Fi Direct Virtual Adapter #2", - "physical_address": "AA-7E-EA-F3-64-C3", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - }, - { - "name_long": "Ethernet adapter VMware Network Adapter VMnet1", - "name": "VMware Network Adapter VMnet1", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "VMware Virtual Ethernet Adapter for VMnet1", - "physical_address": "00-50-56-CC-27-73", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::f47d:9c7f:69dc:591e", - "prefix_length": 8, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.181.1", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [], - "dhcp_server": "192.168.181.254", - "dhcpv6_iaid": "771772502", - "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": "2024-09-19T18:01:29", - "lease_obtained": "2024-09-19T08:31:29", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter VMware Network Adapter VMnet8", - "name": "VMware Network Adapter VMnet8", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "VMware Virtual Ethernet Adapter for VMnet8", - "physical_address": "00-50-56-C9-A3-78", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::4551:bf0d:59dd:a4f0", - "prefix_length": 10, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.213.1", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [], - "dhcp_server": "192.168.213.254", - "dhcpv6_iaid": "788549718", - "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", - "dns_servers": [], - "primary_wins_server": "192.168.213.2", - "lease_expires": "2024-09-19T18:01:29", - "lease_obtained": "2024-09-19T08:31:29", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Wireless LAN adapter Wi-Fi", - "name": "Wi-Fi", - "type": "Wireless LAN", - "connection_specific_dns_suffix": "localdomain", - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) Wi-Fi 6 AX200 160MHz", - "physical_address": "A8-7E-EA-55-26-B0", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [ - { - "address": "fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08", - "status": "Preferred" - } - ], - "temporary_ipv6_addresses": [ - { - "address": "fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef", - "status": "Preferred" - } - ], - "link_local_ipv6_addresses": [ - { - "address": "fe80::4fae:1380:5a1b:8b6b", - "prefix_length": 11, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.1.169", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [ - "192.168.1.1" - ], - "dhcp_server": "192.168.1.1", - "dhcpv6_iaid": "162037482", - "dhcpv6_client_duid": "00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6", - "dns_servers": [ - "192.168.1.1" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-20T08:31:30", - "lease_obtained": "2024-09-19T08:31:30", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Ethernet adapter Bluetooth Network Connection", - "name": "Bluetooth Network Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Bluetooth Device (Personal Area Network)", - "physical_address": "A8-7E-EA-43-23-14", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-WIN11-HOME","primary_dns_suffix":null,"node_type":"Hybrid","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["localdomain"],"adapters":[{"name_long":"Ethernet adapter Ethernet","name":"Ethernet","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Intel(R) I211 Gigabit Network Connection","physical_address":"24-4B-FE-AB-43-C3","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Ethernet adapter Ethernet 2","name":"Ethernet 2","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Realtek PCIe 2.5GbE Family Controller","physical_address":"24-4B-FE-57-3D-F2","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Unknown adapter OpenVPN Data Channel Offload for NordVPN","name":"OpenVPN Data Channel Offload for NordVPN","type":"Unknown","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"OpenVPN Data Channel Offload","physical_address":null,"dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Unknown adapter Local Area Connection","name":"Local Area Connection","type":"Unknown","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"TAP-NordVPN Windows Adapter V9","physical_address":"00-FF-4C-F4-5E-49","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Wireless LAN adapter Local Area Connection* 1","name":"Local Area Connection* 1","type":"Wireless LAN","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Microsoft Wi-Fi Direct Virtual Adapter","physical_address":"A8-7E-EA-5A-7F-DE","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Wireless LAN adapter Local Area Connection* 2","name":"Local Area Connection* 2","type":"Wireless LAN","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Microsoft Wi-Fi Direct Virtual Adapter #2","physical_address":"AA-7E-EA-F3-64-C3","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]},{"name_long":"Ethernet adapter VMware Network Adapter VMnet1","name":"VMware Network Adapter VMnet1","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"VMware Virtual Ethernet Adapter for VMnet1","physical_address":"00-50-56-CC-27-73","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::f47d:9c7f:69dc:591e","prefix_length":8,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.181.1","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":[],"dhcp_server":"192.168.181.254","dhcpv6_iaid":"771772502","dhcpv6_client_duid":"00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6","dns_servers":[],"primary_wins_server":null,"lease_expires":"Thursday, September 19, 2024 6:01:29 PM","lease_obtained":"Thursday, September 19, 2024 8:31:29 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1726794089,"lease_expires_iso":"2024-09-19T18:01:29","lease_obtained_epoch":1726759889,"lease_obtained_iso":"2024-09-19T08:31:29"},{"name_long":"Ethernet adapter VMware Network Adapter VMnet8","name":"VMware Network Adapter VMnet8","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"VMware Virtual Ethernet Adapter for VMnet8","physical_address":"00-50-56-C9-A3-78","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::4551:bf0d:59dd:a4f0","prefix_length":10,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.213.1","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":[],"dhcp_server":"192.168.213.254","dhcpv6_iaid":"788549718","dhcpv6_client_duid":"00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6","dns_servers":[],"primary_wins_server":"192.168.213.2","lease_expires":"Thursday, September 19, 2024 6:01:29 PM","lease_obtained":"Thursday, September 19, 2024 8:31:29 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1726794089,"lease_expires_iso":"2024-09-19T18:01:29","lease_obtained_epoch":1726759889,"lease_obtained_iso":"2024-09-19T08:31:29"},{"name_long":"Wireless LAN adapter Wi-Fi","name":"Wi-Fi","type":"Wireless LAN","connection_specific_dns_suffix":"localdomain","connection_specific_dns_suffix_search_list":[],"description":"Intel(R) Wi-Fi 6 AX200 160MHz","physical_address":"A8-7E-EA-55-26-B0","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[{"address":"fd63:cc9c:65eb:3f95:57c2:aa:10d8:db08","status":"Preferred"}],"temporary_ipv6_addresses":[{"address":"fd63:cc9c:65eb:3f95:8928:348e:d692:b7ef","status":"Preferred"}],"link_local_ipv6_addresses":[{"address":"fe80::4fae:1380:5a1b:8b6b","prefix_length":11,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.1.169","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":["192.168.1.1"],"dhcp_server":"192.168.1.1","dhcpv6_iaid":"162037482","dhcpv6_client_duid":"00-01-00-01-2C-CF-19-EB-24-4B-FE-5B-9B-E6","dns_servers":["192.168.1.1"],"primary_wins_server":null,"lease_expires":"Friday, September 20, 2024 8:31:30 AM","lease_obtained":"Thursday, September 19, 2024 8:31:30 AM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1726846290,"lease_expires_iso":"2024-09-20T08:31:30","lease_obtained_epoch":1726759890,"lease_obtained_iso":"2024-09-19T08:31:30"},{"name_long":"Ethernet adapter Bluetooth Network Connection","name":"Bluetooth Network Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Bluetooth Device (Personal Area Network)","physical_address":"A8-7E-EA-43-23-14","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]}],"extras":[]} diff --git a/tests/fixtures/windows/windows-7/ipconfig.json b/tests/fixtures/windows/windows-7/ipconfig.json index 53b15bed..a16abe8f 100644 --- a/tests/fixtures/windows/windows-7/ipconfig.json +++ b/tests/fixtures/windows/windows-7/ipconfig.json @@ -1,82 +1 @@ -{ - "host_name": "DESKTOP-WIN7", - "primary_dns_suffix": "somecompany.corp", - "node_type": "Hybrid", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "somecompany.corp" - ], - "adapters": [ - { - "name_long": "Ethernet adapter Local Area Connection", - "name": "Local Area Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) PRO/1000 MT Network Connection", - "physical_address": "00-0C-29-37-3B-4E", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [ - { - "address": "fe80::c447:d1ef:c29f:c44c", - "prefix_length": 10, - "status": "Preferred" - } - ], - "ipv4_addresses": [ - { - "address": "192.168.22.33", - "subnet_mask": "255.255.255.0", - "status": "Preferred", - "autoconfigured": false - } - ], - "default_gateways": [ - "192.168.22.1" - ], - "dhcp_server": "192.168.22.1", - "dhcpv6_iaid": "234881473", - "dhcpv6_client_duid": "00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F", - "dns_servers": [ - "192.168.22.151" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-24T07:02:58", - "lease_obtained": "2024-09-20T12:13:59", - "netbios_over_tcpip": true, - "media_state": null, - "extras": [] - }, - { - "name_long": "Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", - "name": "isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}", - "type": "Tunnel", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Microsoft ISATAP Adapter", - "physical_address": "00-00-00-00-00-00-00-E0", - "dhcp_enabled": false, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [], - "default_gateways": [], - "dhcp_server": null, - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [], - "primary_wins_server": null, - "lease_expires": null, - "lease_obtained": null, - "netbios_over_tcpip": null, - "media_state": "Media disconnected", - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-WIN7","primary_dns_suffix":"somecompany.corp","node_type":"Hybrid","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["somecompany.corp"],"adapters":[{"name_long":"Ethernet adapter Local Area Connection","name":"Local Area Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Intel(R) PRO/1000 MT Network Connection","physical_address":"00-0C-29-37-3B-4E","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[{"address":"fe80::c447:d1ef:c29f:c44c","prefix_length":10,"status":"Preferred"}],"ipv4_addresses":[{"address":"192.168.22.33","subnet_mask":"255.255.255.0","status":"Preferred","autoconfigured":false}],"default_gateways":["192.168.22.1"],"dhcp_server":"192.168.22.1","dhcpv6_iaid":"234881473","dhcpv6_client_duid":"00-01-00-01-29-4E-8F-8A-00-0C-29-88-1B-1F","dns_servers":["192.168.22.151"],"primary_wins_server":null,"lease_expires":"Tuesday, September 24, 2024 7:02:58 AM","lease_obtained":"Friday, September 20, 2024 12:13:59 PM","netbios_over_tcpip":true,"media_state":null,"extras":[],"lease_expires_epoch":1727186578,"lease_expires_iso":"2024-09-24T07:02:58","lease_obtained_epoch":1726859639,"lease_obtained_iso":"2024-09-20T12:13:59"},{"name_long":"Tunnel adapter isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}","name":"isatap.{E24F3EA8-436E-3B26-8BB9-CED33928744B}","type":"Tunnel","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Microsoft ISATAP Adapter","physical_address":"00-00-00-00-00-00-00-E0","dhcp_enabled":false,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[],"default_gateways":[],"dhcp_server":null,"dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":[],"primary_wins_server":null,"lease_expires":null,"lease_obtained":null,"netbios_over_tcpip":null,"media_state":"Media disconnected","extras":[]}],"extras":[]} diff --git a/tests/fixtures/windows/windows-xp/ipconfig.json b/tests/fixtures/windows/windows-xp/ipconfig.json index 5cf60b4a..d0c9a9db 100644 --- a/tests/fixtures/windows/windows-xp/ipconfig.json +++ b/tests/fixtures/windows/windows-xp/ipconfig.json @@ -1,51 +1 @@ -{ - "host_name": "DESKTOP-PC4", - "primary_dns_suffix": "somecompany.corp", - "node_type": "Unknown", - "ip_routing_enabled": false, - "wins_proxy_enabled": false, - "dns_suffix_search_list": [ - "somecompany.corp", - "somecompany.xyz" - ], - "adapters": [ - { - "name_long": "Ethernet adapter Local Area Connection", - "name": "Local Area Connection", - "type": "Ethernet", - "connection_specific_dns_suffix": null, - "connection_specific_dns_suffix_search_list": [], - "description": "Intel(R) PRO/1000 MT Network Connection", - "physical_address": "00-0C-29-25-B6-4D", - "dhcp_enabled": true, - "autoconfiguration_enabled": true, - "ipv6_addresses": [], - "temporary_ipv6_addresses": [], - "link_local_ipv6_addresses": [], - "ipv4_addresses": [ - { - "address": "192.168.22.135", - "subnet_mask": "255.255.255.0", - "status": null, - "autoconfigured": false - } - ], - "default_gateways": [ - "192.168.22.1" - ], - "dhcp_server": "192.168.22.1", - "dhcpv6_iaid": null, - "dhcpv6_client_duid": null, - "dns_servers": [ - "192.168.22.151" - ], - "primary_wins_server": null, - "lease_expires": "2024-09-22T22:31:26", - "lease_obtained": "2024-09-21T22:31:26", - "netbios_over_tcpip": null, - "media_state": null, - "extras": [] - } - ], - "extras": [] -} +{"host_name":"DESKTOP-PC4","primary_dns_suffix":"somecompany.corp","node_type":"Unknown","ip_routing_enabled":false,"wins_proxy_enabled":false,"dns_suffix_search_list":["somecompany.corp","somecompany.xyz"],"adapters":[{"name_long":"Ethernet adapter Local Area Connection","name":"Local Area Connection","type":"Ethernet","connection_specific_dns_suffix":null,"connection_specific_dns_suffix_search_list":[],"description":"Intel(R) PRO/1000 MT Network Connection","physical_address":"00-0C-29-25-B6-4D","dhcp_enabled":true,"autoconfiguration_enabled":true,"ipv6_addresses":[],"temporary_ipv6_addresses":[],"link_local_ipv6_addresses":[],"ipv4_addresses":[{"address":"192.168.22.135","subnet_mask":"255.255.255.0","status":null,"autoconfigured":false}],"default_gateways":["192.168.22.1"],"dhcp_server":"192.168.22.1","dhcpv6_iaid":null,"dhcpv6_client_duid":null,"dns_servers":["192.168.22.151"],"primary_wins_server":null,"lease_expires":"Sunday, September 22, 2024 10:31:26 PM","lease_obtained":"Saturday, September 21, 2024 10:31:26 PM","netbios_over_tcpip":null,"media_state":null,"extras":[],"lease_expires_epoch":1727069486,"lease_expires_iso":"2024-09-22T22:31:26","lease_obtained_epoch":1726983086,"lease_obtained_iso":"2024-09-21T22:31:26"}],"extras":[]} diff --git a/tests/test_jc_utils.py b/tests/test_jc_utils.py index 7d50c102..4370a50f 100644 --- a/tests/test_jc_utils.py +++ b/tests/test_jc_utils.py @@ -37,6 +37,8 @@ def test_utils_timestamp(self): '3/22/2021, 1:15:51 PM (Coordinated Universal Time)': {'string': '3/22/2021, 1:15:51 PM (Coordinated Universal Time)', 'format': 1705, 'naive': 1616444151, 'utc': 1616418951}, # Windows english format with UTC tz (found in systeminfo cli output) '3/22/2021, 1:15:51 PM (UTC+0000)': {'string': '3/22/2021, 1:15:51 PM (UTC+0000)', 'format': 1710, 'naive': 1616444151, 'utc': 1616418951}, + # Windows ipconfig cli output format + 'Thursday, June 22, 2023 10:39:04 AM': {'string': 'Thursday, June 22, 2023 10:39:04 AM', 'format': 1720, 'naive': 1687455544, 'utc': None}, # Google Big Table format with no timezone: '2000/01/01-01:00:00.000000': {'string': '2000/01/01-01:00:00.000000', 'format': 1750, 'naive': 946717200, 'utc': None}, # Google Big Table format with timezone: From a8f769eea3d606695f5d9ffddc42a66b4eba890c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 20 Oct 2024 09:50:36 -0700 Subject: [PATCH 12/20] doc update --- jc/parsers/ipconfig.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py index 7f421b5d..4687cea8 100644 --- a/jc/parsers/ipconfig.py +++ b/jc/parsers/ipconfig.py @@ -20,7 +20,7 @@ "ip_routing_enabled": boolean, "wins_proxy_enabled": boolean, "dns_suffix_search_list": [ - string + string ], "adapters": [ { @@ -51,7 +51,7 @@ { "address": string, "status": string, - "prefix_length": int, + "prefix_length": integer, } ], "ipv4_addresses": [ @@ -81,7 +81,7 @@ "netbios_over_tcpip": boolean, "media_state": string, "extras": [ - string: string + : string ] } ], From e858faa746866ad0c8561eb28c400bf3261fd7cf Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 18 Nov 2024 16:21:40 -0800 Subject: [PATCH 13/20] fix for contiguous packages with the same name --- CHANGELOG | 3 ++- jc/parsers/rpm_qi.py | 22 ++++++++-------------- tests/fixtures/generic/pkg-index-deb.json | 2 +- 3 files changed, 11 insertions(+), 16 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 575407f9..da5ee3fe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20241018 v1.25.4 +20241118 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) - Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` @@ -9,6 +9,7 @@ jc changelog - Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses +- Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/rpm_qi.py b/jc/parsers/rpm_qi.py index e48fb731..c2a3dc2e 100644 --- a/jc/parsers/rpm_qi.py +++ b/jc/parsers/rpm_qi.py @@ -185,7 +185,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.8' + version = '1.9' description = '`rpm -qi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -256,8 +256,6 @@ def parse(data, raw=False, quiet=False): raw_output = [] entry_obj = {} - last_entry = None - this_entry = None desc_entry = False desc_en_entry = False description = [] @@ -268,17 +266,13 @@ def parse(data, raw=False, quiet=False): split_line = line.split(': ', maxsplit=1) if (split_line[0].startswith('Name') or split_line[0] == 'Package') and len(split_line) == 2: - this_entry = split_line[1].strip() - - if this_entry != last_entry: - if entry_obj: - if description: - entry_obj['description'] = ' '.join(description) - raw_output.append(entry_obj) - entry_obj = {} - last_entry = this_entry - desc_entry = False - desc_en_entry = False + if entry_obj: + if description: + entry_obj['description'] = ' '.join(description) + raw_output.append(entry_obj) + entry_obj = {} + desc_entry = False + desc_en_entry = False if line.startswith('Description :'): desc_entry = True diff --git a/tests/fixtures/generic/pkg-index-deb.json b/tests/fixtures/generic/pkg-index-deb.json index d9897227..968059b7 100644 --- a/tests/fixtures/generic/pkg-index-deb.json +++ b/tests/fixtures/generic/pkg-index-deb.json @@ -1 +1 @@ -[{"package":"dotnet-host","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2557da13447d61382f255eb751ba29cc1a8220899c1e3e640a7bb3d2a0c1d297","size":32594,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.16-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.10)"],"sha256":"1d9869f862cb4e9c46b245a343d8e39fbbc84d9f8ab9ef357c4643da20805ad3","size":6084188,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.10-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5fcdc041e503ffcd726bf6455f339b5438d3fac3689a5f5313e1eba67e606f88","size":165966956,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2883-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68167,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.25 Microsoft.NETCore.App 2.1.25","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.25)","dotnet-hostfxr-2.1 (>= 2.1.25)"],"sha256":"935826f9edac6762c4f65ec5a9199110229470b6e72274a5efe0e6d9104d3c02","size":20321788,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.25-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.25 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.25)","libc6"],"sha256":"f1b30770705e2b8b2ab722ba42623ad15d27a43c0f29c621aeab112e948260f8","size":143780,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.25-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.7)"],"sha256":"386f3e029fb52b33fcc5b98cbc481c17f0d496a609523b1878cfa16173bb61bc","size":6087024,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.7-x64.deb"},{"package":"aadsshlogin","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"68466418441afe8eb6b557d81065eb47d43646b9538c0c996ecbe8c58dbe6e75","size":418558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016820001_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d50a5c1bd8242f0320d52774d5266d94fae98779f49d9a8a096855d56177c571","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.1-x64.deb"},{"package":"dotnet-host","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.31","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"50e08c977e2cb6c3353a59c323bf52d57b78ca74c061b3ee659132103b2eca33","size":32458,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.31-x64.deb"},{"package":"sysmonforlinux","version":"1.1.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"b1f813bc8e0359f218dfb182bb64f8b5c0f6fc352e72e615758826841739e58e","size":1515746,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.0-0_amd64.deb"},{"package":"moby-containerd","version":"1.3.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.10)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"62378c56cd108ebaad70d9e0bfe8c30f715c2ae86df2393435303ceb1ed2aded","size":27668988,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.5+azure-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"d4725a8504b3a6d73f7cb82907d02e9c2176424432ad35e7fcb2d468841bf528","size":3863540,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.1-1_amd64.deb"},{"package":"azapi2azurerm","version":"1.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20596,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3d76c30d08189db164b13f34a39bfb57e8a79700effa18024b9d1fcd2aa66673","size":6702890,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.1.0-1-amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.13)","libc6"],"sha256":"93ef511b5897aead2d0d9452c19aa0d9b938e6e7986edd76fb781fb6b770f4f6","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.13-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.5 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.5)","libc6"],"sha256":"9125c2843951d5149930d1260854223ce4050eb86a9b9bbe6a5056c4b64c274d","size":140778,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.5-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2492,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"7505fd24b596049d1b573bcda9df3f1b3bb7be7611734a91825f1442d2587c4e","size":602668,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71088,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.6 Microsoft.NETCore.App 3.1.6","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.6)","dotnet-runtime-deps-3.1 (>= 3.1.6)"],"sha256":"b2b20959dcca02ffdabe5a7b212ed63d1d3a454603ab34c2c7df5f9f52671a21","size":21776838,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.6-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.0)","libc6"],"sha256":"4e10a768c6e9bee484c47e4d4e4d321556c9c5cb283d06a2655cd678497f881f","size":142176,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.0-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228009,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"361a22a6e60ec80a40351b2e1453a389e1702b31bec93ed5ceacd4fe17527874","size":58788182,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.406-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.15 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.15)","libc6"],"sha256":"d9683a54735da8114110ba75f1da9f15e1f2692b2ad33df3a6d8f95477fa35a4","size":140318,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.15-x64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":52732,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5636c437bdf857d8835c7c1ab26c6beada631fe4989efd3cd2d01140120a860b","size":10877354,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11746,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"3f8aeb1f6a3d17bf42d286c5083d43f65f07d08ba0195a88992a02b023320210","size":1314262,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"3da92fd67c733645ccdba3b0608bb1382a4e949193d5cd2eec0e1ff37e61cbb0","size":2654,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.13-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.519-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228812,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.519","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"a59888761f41fb6d1953ea2e30d4e6194bc1a610f2a93046655d290e361c982e","size":88705220,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.519-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.316-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.316","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"47cfedb8743e3dbea1e1e600cd95706dfa2f6efe425cf4662693d8734405ee8f","size":85176670,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.316-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"96ae0131a8f65e2f5deddce96f8cd00b750a8fd86379ca63ae7851f77e063700","size":419334,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016890001_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"0edf4c43e4be13a8390269ffea663cfc7a6a25a5faac9afcf4b8189abef8de10","size":2124278,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.7-x64.deb"},{"package":"mystikos","version":"0.12.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"770c905b3d7e55cd373b5459fddb2c2e14163d31218f424bdc850a4764ece70d","size":6579698,"filename":"pool/main/m/mystikos/mystikos_0.12.0_amd64.deb"},{"package":"open-enclave","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":124310,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"db486581c4046e9c983e71df1556a3568dd9ed6aed55e278fce721c827bddbcf","size":34456690,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.0_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8ab1b6ef86eac3f6043c56bc6d4c2906e547474885a27b9fca89a45e717bcd04","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.23-ubuntu.14.04-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"022b3e1cf0a2b0c3c140aa89d992dbf8b428378610056b888ea890ec95ceaced","size":227619356,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4626-1.deb"},{"package":"powershell","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0af024461c5184a387fb346ee00b3da3da5fa734ce7bdeec65b085870ca4ea7e","size":68393634,"filename":"pool/main/p/powershell/powershell_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b7518a808d2ba0cf80647bc5b0f7cfca6f8bae47d743961e5da83352c31ea64a","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.24-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ce2c901402023712f4554503d55066540b03d87efdce76db242e1db2b441390d","size":209992028,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3785-1.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.17","homepage":"https://github.com/dotnet/core","sha256":"1ea44b76143ccedabec500b42707d06edc50041d0d26b7d0689cd2a7f8e364d3","size":42336,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.17-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.27 Microsoft.NETCore.App 2.1.27","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.27)","dotnet-hostfxr-2.1 (>= 2.1.27)"],"sha256":"a3f9825b3ffe3087d7c5ebea0ee16cab29759fbdc4ab633455c7a9ed5c6f6d2a","size":20332510,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.27-x64.deb"},{"package":"azcmagent","version":"1.15.01874.34","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e30e3813d8803cc7e69e61f3d6440fcd1224451b446a596241bf913ebf840ef4","size":51722932,"filename":"pool/main/a/azcmagent/azcmagent_1.15.01874.34_amd64.deb"},{"package":"moby-containerd","version":"1.6.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":123878,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a08844feebd523f95dc261969c609f253d7bdafa34d02fa9887759c15164e31c","size":30980814,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"29b8a014222d013e3cd033f89d51bd7b1fdf5253e1be0dd94e22f219d779417b","size":1307204,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.5-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.17 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.17)","libc6"],"sha256":"675177925887deef31b6b82e5226234ce7a2a20ccd152255e0e1eff469869675","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.17-x64.deb"},{"package":"intune-portal","version":"1.2210.50","architecture":"amd64","section":"utils","priority":"optional","installed_size":26727,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["gnome-keyring (>= 3.36)","libsoup2.4-1 (>= 2.4.0)","libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libsqlite3-0 (>= 3.7.14)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libcurl4 (>= 7.16.2)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libpango-1.0-0 (>= 1.14.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.16.2)","libx11-6","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.9.10)","libglib2.0-0 (>= 2.35.8)","libssl1.1 (>= 1.1.0)","msalsdk-dbusclient (>= 1.0)","libsecret-1-0 (>= 0.19.1)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a25651c703a76d9a6c8c7b3753fc4e269cc8dcda7f3618db609da97a9df92941","size":6756548,"filename":"pool/main/i/intune-portal/intune-portal_1.2210.50_amd64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2729,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"3bfe8ee9b4483f22e063417f8441365e412007ce4242107e6857b6c89a25fe67","size":684054,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.24)","libc6"],"sha256":"78a20e961d0562c05c79ed809636535c594f3cfeb18b9b662d7768757bd7c8b9","size":142386,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.24-1_amd64.deb"},{"package":"moby-tini","version":"0.19.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":823,"maintainer":"Microsoft ","description":"tiny but valid init for containers","homepage":"https://github.com/krallin/tini","sha256":"f9e1777db87f1d10edf19f35b62bf9288ff47f1ebbb219edcaa3cd1db4539430","size":349856,"filename":"pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70843,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.10)","dotnet-hostfxr-7.0 (>= 7.0.10)"],"sha256":"61ff73e62903f96a7f4e85005bbae9c324958747a1369684754b9da69dfce308","size":23207202,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"intune-portal","version":"1.2302.11","architecture":"amd64","section":"utils","priority":"optional","installed_size":18603,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["msalsdk-dbusclient (>= 1.0)","libc6 (>= 2.29)","libsqlite3-0 (>= 3.7.14)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","libatk1.0-0 (>= 1.12.4)","gnome-keyring (>= 3.36)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libstdc++6 (>= 9)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libpam0g (>= 0.99.7.1)","libsecret-1-0 (>= 0.19.1)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)","libx11-6","libglib2.0-0 (>= 2.35.8)","libpango-1.0-0 (>= 1.14.0)","libgtk-3-0 (>= 3.9.10)","libc6 (>= 2.28)","libsystemd0"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"685c7f694bf7a1e3e8cf1cbed3198a218283c37c0b23eebdf543eec400f10374","size":3344596,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.11_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.2+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348986,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5a711a4e64db7b4b7b0b0e79be0fd182722b16e83bac584d2edfa92c309fc433","size":205342114,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.2+7-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13097,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.11)"],"sha256":"f978b549faf888d3b27caecc94ed4afe26b9bd7be908e44349e7fc7b749747fc","size":1526066,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.19 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.19)"],"sha256":"be05d2befe19c95107b1cde4fc0abe6fa6b0e4cca03f1be32408505851f2e5ce","size":21928174,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"5f5903bfd7dfc455dd48530121cd67250de834a5667fc1a022e976238ee6e5f5","size":1307476,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11285,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"4eebb74f244a7909a4b8a72ca1ffd3a75fa75a192917285f513986393c504645","size":3523918,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227516,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"d84b52c828206632fee8f7f830ccf87847b8a66d65f8d91a66f98f08f200e4a5","size":59002212,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10784,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.6","homepage":"https://github.com/dotnet/core","sha256":"8d0f284061b82e7ba4089363a14630bc7e0d5ecf89e2a14a2130b8660e34ed01","size":3411678,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.6-x64.deb"},{"package":"open-enclave","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":113802,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"1b4d1a00cf3e49a79f8b4c7bc7738a815cbb68c29ea3a896225664e1a8cc02f8","size":31111910,"filename":"pool/main/o/open-enclave/open-enclave_0.17.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.30 3.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.30)","libc6"],"sha256":"be3ff69b76c9ceca3c2e664ae2829cedeeebe40a6a8113c65cb3d39c3c15b006","size":120710,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.30-x64.deb"},{"package":"azcmagent","version":"1.10.21228.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"279296ab5dc1f4455a8ba0d2c50247c5c0db6028c648e32ed9e33c201be46009","size":49565968,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21228.010_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"b1e6af88a0ee657e0147ba620ffb0797e88185e9c81e8d39fcb4eb21cd1721ee","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022090001_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"bee6959620c1cf6a6018d530e34b328c8ae3ef6ef5ac9ed725177cc45c3bb158","size":10124,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015280001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.5)"],"sha256":"13624f3fb400d4daba08db8c7b81a08fbe0e76d012741092e1bec6630217ed74","size":6086620,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.5-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"7286ff6948a8668ec80770b44d4f665ba87c8ce39ea00b5d52fa6ed3dff0e0a0","size":26989344,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-1_amd64.deb"},{"package":"blobfuse","version":"1.4.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":34258,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.2 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"03c3eb0229ea30aa561b231555cc8971c071d424f535bb1b79dc79e0a922d4a8","size":9837918,"filename":"pool/main/b/blobfuse/blobfuse-1.4.2-ubuntu-20.04-x86_64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d0e717c4b68da8d23ca511e28c5816c1f97a9f28b39af6500cbce82d516ad4db","size":141849620,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4544-1.deb"},{"package":"defender-iot-micro-agent","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"89c53fc7ed37643ada062c31d3242b137867b0270077bbab5e8e44265f3cf0ac","size":276272,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.13.1.deb"},{"package":"scx","source":"scx","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"8efc366fcd0bea36aa4e7350f1fcefa009b8c3c5e2c08124882dc2ceadb526dc","size":2588282,"filename":"pool/main/s/scx/scx-1.6.11-0.universal.x64.deb"},{"package":"procdump","version":"1.1.1-220","architecture":"amd64","section":"devel","priority":"optional","installed_size":280,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"aa9b16f4940719db016ae7645c3deb3abefcda85ec37373be7239d0a36015901","size":91470,"filename":"pool/main/p/procdump/procdump_1.1.1-220_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3788fcba514cd7f6813cad1cc023a87a0c354b5e62fb0bba66f999622d6030fe","size":5341828,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68422,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.13)","dotnet-runtime-deps-6.0 (>= 6.0.13)"],"sha256":"0e1debddea9b7ff4939a88af07867fcefc87b2f468f98f71fadd4aa71b176a80","size":22613226,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.13-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11277,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"c6bbe37dd7bbeccff48a6b65ab692f6d778ae9dc5af29816541a54682df2f35e","size":3524590,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.3-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cae69c3c33de3da4bfcd4b7efa29c4023c518e4adba34056ebaa1b0f9f78ba22","size":2674,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.21.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59364,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"e9f35d0b7fd6e8032d7a1be840dd7546a17a76a78ce2dc244846e2e5c01309b1","size":17815234,"filename":"pool/main/m/moby-compose/moby-compose_2.21.0-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.3","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"468e51c36fa323f47ae5789cf8ae9d45475d3639062bae7e8db688d4fa85154d","size":4117940,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71082,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.23 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.23)"],"sha256":"d8a5eef5d923878c0a7533aed050532a30b0dba4ca34cce16997633eb6f13bc0","size":21927716,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.23-x64.deb"},{"package":"aziot-edge","version":"1.4.20-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18518,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.6-1)","sed"],"sha256":"201b83f04628b7b4ca023681fc1cfb79c31a58fad34bf5aa46fada8554f170ee","size":4431946,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.20-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.9 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.9)","libc6"],"sha256":"f8bf3566081aaf2d5d48876aa066a63f19112718076a64d72286492927b2848f","size":140282,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.9-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.5 Microsoft.NETCore.App 5.0.5","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.5)","dotnet-hostfxr-5.0 (>= 5.0.5)"],"sha256":"212e1082ed580e382c344308ceaa810c4c6b22369578fb02799fc7d765f3c51f","size":21795820,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.23","homepage":"https://github.com/dotnet/core","sha256":"6055ab67097c149fdbde1ce7da11181f5198f72eccbedf998cd1e5dcc38b788b","size":41920,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.23-x64.deb"},{"package":"moby-containerd","version":"1.4.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138428,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b73911216929949d23a8b4a664b75a0dd5c676488fb38ce74f5a2d25439300ef","size":30822564,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.4+azure-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"b96158bd7f48db6917e50449fcadb7e6d154735ec19973410c81da18b4585f4f","size":1315894,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313428,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.112","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"bbb517ce8930b6c25860a34f7d1858c67965ed9a4c445ab36f0482eecd123afd","size":78525266,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.112-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a8028acfa074da855eef31805a52ed341f95f33bf74319a083903b8fc17bca7c","size":157155760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5348-1.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189593,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.416","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.22)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.22)","aspnetcore-runtime-3.1 (>= 3.1.22)"],"sha256":"8b2cf4f47bff8d9768fb21626f6847e5223dc9ac12ee951718f9db41bf7c5985","size":48071620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.416-x64.deb"},{"package":"dotnet-host","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.24","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3e1b4542b0a826316d1fbbcd96f5c4672de7988939f11d478995ab0ee00fbf7","size":55918,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.24-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6670365be8316093097de476a0054d9989fc1f9116d3b558b0922e9c0190ab1f","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124223,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"bba9e4e3481c121b2cf4b208c2c2540486cd9ac5e1a6488c9a5902a15ffd5a7d","size":27583496,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.10+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.2.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23914,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"242c7beed66e90503bae72243abf10c08e68b087e601122ac18bc19c4f63aa95","size":5777600,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.8-1_amd64.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":85898,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8b0a0833dde01dd7dee5b94cd38a7379a2feba6183464f034e2c521f6eb90aa2","size":20426268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5f72d3dd601e5211aa00f26cc5ed578eca7762c0d34bea0e560e5147d1e0d8d7","size":69440998,"filename":"pool/main/p/powershell/powershell_7.2.8-1.deb_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8fa09b323ce9042ad1e8cda02546047bc6e2e9ba07afddd498ebe4a86b13df69","size":227702464,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4669-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.525-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228666,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.525","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7bf4042264f848adb36b1b8729e413ce86a772586076aa05a0f2937c403b0908","size":89342040,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.525-x64.deb"},{"package":"azcmagent","version":"1.10.21239.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"606ecba800eb9417ea5c4f2cef0c2b31e3b154e310aa95223d52c4d7cb8d684b","size":49538204,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21239.003_amd64.deb"},{"package":"dotnet-host","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fcdf2ff915a09a0eadef97518df927e173fb16f3ace90f29ee509188d945dd12","size":32478,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"1c730d33b41d3cb90a4b4113c422c1be81b5fa8f739046643befb55903921675","size":3522798,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.10-1_amd64.deb"},{"package":"open-enclave","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":191735,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e20e03dab90cd3cf7b17d8672bfc6385bd27a7adb9db4ca13ce02a7c4ad26511","size":54537200,"filename":"pool/main/o/open-enclave/open-enclave_0.19.4_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"1ff382ea6af6364f8f35a5ccd64bae88c31d09652d5ad252fd55bb212e99673d","size":2567222,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"b777ed2b90ea97dda2a8654b23901d8a2c8366e5a8c2b2573e8aba042fd9e835","size":285622,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022300001_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"b22a9d3b4e9383be7d8f3c0c7922bd1552775b7abc446a46bedb6ccaef4211f2","size":264512,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.11.1.deb"},{"package":"msalsdk-dbusclient","version":"1.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["msft-identity-broker (>= 1.0)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"78588d17039d3bf3096f1a0476e70eece76d732fd938e447e37a3c3c33af0b36","size":9932,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.9 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.9)","libc6"],"sha256":"745a556521a404a87e636a6a051021d66b0708db00201b0a8127baedc4394ec9","size":121016,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.9-x64.deb"},{"package":"open-enclave","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e312248f847146ffc16a3a44dd3379d9bbc9bc623ba41c11bdfc8daa700cbf79","size":54508872,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.2_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"267046f6a5bdc652cdff399e69bb048a9fe31b9fffa5ecf59e5ffa8651fd105b","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.7-x64.deb"},{"package":"dotnet-host","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"59f7084cb3930657e8e08dfb41bb360553a7820fac22fe19217dfe678c367a30","size":55714,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.4.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":56247,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"f4ba4ef6fd9b049349ac21d6f3dac387da99fc573b6d2aa0e8c8e3c25ff87eac","size":19462424,"filename":"pool/main/m/moby-buildx/moby-buildx_0.4.2+azure-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.7-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324493,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"d85c672f28263e589bb24c644a0d514c022c54d9a82c932dd7e204913746b408","size":192238598,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.7-1_amd64.deb"},{"package":"azureauth","version":"0.8.2-7","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"88293e261db82ab4065f3121d5347305dafae0cc18976a9db7dc857b0c9a23c8","size":24108106,"filename":"pool/main/a/azureauth/azureauth_0.8.2-7_amd64.deb"},{"package":"mdatp","version":"101.03.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"1cdeb1f84286fcfc3634aa636184e69d8de4a256d7bc3395c3cd46299cbb311c","size":16306366,"filename":"pool/main/m/mdatp/mdatp_101.03.48.amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17467,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.8)"],"sha256":"1d7fdcf419bf3a78364d885517fbbe694b34fbb4259ba1184bc1b7f7f993c435","size":5769702,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.8-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c4b114bffd76a55588d9dad3bbea3d0edb2290fb212b89501fe1dee9d0fb8886","size":10570860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-2_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120070,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4b38f17f2fcfce60d3de5c5ca99dc6443e335f273210e68d9d1e83ae7f300335","size":26969412,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"86d1b67b0287593f023edc08217c3d7b4d9fe34db6bed602f089057c7135ddd4","size":172048900,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5148-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4425-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ebda02d39c2f184fe7798f607f9baf741a726166bdf620faf30df1e8cb78ef83","size":211264760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4425-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"248211ce798f17bc101da096123ab085072f718891e812ab28d54b1ef2177267","size":124416520,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4629-1.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19877,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.18)"],"sha256":"fb2b920c58eafd21f1603fab79ad877e1a1d6b52f1b09bb3e574ba4c52e5790b","size":6614146,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.18-x64.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1cf0fe4a1864137275b9ae732c2955f6a38e652633ec31ed295f109da4b8b9c8","size":31535086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"d77d76800156fe2f8927c4058e9f38c5869792154381eaab1f21c390c1f2339f","size":1315890,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"48a86372085acf1ef0654ccca308a29db18d0cd892dfa37f707b0170ebdff1c9","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.22-x64.deb"},{"package":"azureauth","version":"0.8.2-5","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"16af522abeaf26d129c2fe85797a1545885a9ca971cffa1d139caae64f8a6bfc","size":24114326,"filename":"pool/main/a/azureauth/azureauth_0.8.2-5_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.6)"],"sha256":"04e742a057549d5c5e523ffcaa2b141e2c72746844a0129f7cebcc2c9f8707cf","size":6086044,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.6-x64.deb"},{"package":"moby-containerd","version":"1.5.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109077,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fb25060e68694a6ed58f6083001aa10e158831e537ccd8381a91683fc6dac4e0","size":26798086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"blobfuse","version":"1.3.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":32372,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6caf1a6e677ad286dd707a2ab99c202357e9b523c06980ac62e83eac577814bc","size":9299024,"filename":"pool/main/b/blobfuse/blobfuse-1.3.5-Linux-Ubuntu2004.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-common-media (= 0.11.1~beta.1)"],"sha256":"dc35ab240cb86855ab55cd95f92f89fc3900c72c1ddc234e90ddbf87a6cf5b2a","size":149912,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fad642753e596b724728fdffda51446c1371892559c07e8155f819a93a20f2a5","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.17-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.806-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.806","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"dc70903977d4832aa821e17a3734942f806dab283332eed711ab45d5de531ec7","size":92091884,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.806-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3d49b06db4758632dcb37f6e77e67fd27c62b7ca92b88a4402534d12427acc5c","size":227694792,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4727-1.deb"},{"package":"apt-transport-https-sas","version":"0.9-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"847f65c962d5a64d5d9c84673ac1aefa9e93d6456f5da6bcf84728dcfba8d707","size":12426,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-3_amd64.deb"},{"package":"aadsshlogin","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"c29b7738d9aa27f63ddb3385a104bb770de79ba757bc79156a256830a84c4e8f","size":419498,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017540001_amd64.deb"},{"package":"aziot-identity-service","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17955,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"2393429995c94361cb1691e3be79b1a210bb4ced647905c8951bd196356a71fd","size":3756332,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.3.0-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195083,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2518230120bde23d124e8a8d30d560b14572a588af57e441c4c24ea52ca79e2f","size":70861036,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336633,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.404","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"b0db8754304b29c3a8a28820080713733b8cba9cc4549e6496bf7f4945685562","size":86631222,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.404-x64.deb"},{"package":"moby-engine","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98009,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"aa0eb3b0654816491b036a85d6b3df81b0e26c54fd0086c136d973bb49b2e25c","size":21182268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.10+azure-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3069,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"87b13cedd03de43b952a2b0678191adadda03f8fcf9e584ad5d3a43b2b7c6450","size":838158,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.0_amd64.deb"},{"package":"dotnet-host","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10d190304d21b10b7f51a79d08bd5e867ef97b59cc866841d12f0970e91f62a9","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.2-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"75d79e64f4f3525555196c3de3b6a6d6c255a317a51538cfe30567f92caf51a9","size":2130996,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.13-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.16 Microsoft.NETCore.App 5.0.16","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.16)","dotnet-hostfxr-5.0 (>= 5.0.16)"],"sha256":"94c64f37c5366da138ba001c362d9f0fa75b8131817558b68e52b20bab538b56","size":21840928,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.16-x64.deb"},{"package":"powershell-preview","version":"7.2.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":164716,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f93016a0cfd85711d8eb274a123b353f463f3e589baa53c8af18c5c269126a12","size":66452168,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ce62dc4ac114de9cd82ad3db7eab8551addd5f329c55d9bc8f1a9c0ee7ea8119","size":32452,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.27-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.27)"],"sha256":"0bbe47ed2413a67ce2f84a38145cc4a3dbbefa668c8704e305818c7f4b0c7951","size":5771296,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.27-x64.deb"},{"package":"dotnet-host","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9aafd51da5c39d88c7190f208b874e8b159359b74481d46ea87159cf0fc9ffb1","size":32504,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.24-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4fab6a262de18f8b64e57dd27c5a6acd9bf769a233561ea50f9ecd5013581fc8","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.20-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3696,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"dfe9e0705a4186d418ea9a48e3c80c353e8fd943e3f566d829173d20aaaea537","size":1010380,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.19.4_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3477-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08cb107257aca65fa156ef7c7708d0620c703769cceb4aedff56f0eea688f6c6","size":209487336,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3477-1.deb"},{"package":"dotnet-host","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"168de157996cc20afcb22c99aa363447aa177347b7d053ee1e4c12e36e5adebc","size":57382,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.12-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.15+10-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316139,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"0a2a9f6be1fca5891486b90c4676b95c547e2df1a9750443ae2a8782234f3fa5","size":193176730,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.15+10-LTS-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"59a7d8c4a06591962abcea21dad220af537f300bac1f6cfc1be78cb898676457","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.1-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f7854d72dcce33b230cbcb69a9f7ddd7189d96b52edd5fda39f4cc8d24673ca8","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.11-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.2)","libc6"],"sha256":"8348f279c3614c93676cfefecf6f653135b910dd9ab0a702edc6d65f5f2bf36b","size":142108,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.2-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f6627857e9a11b74d9e676ab62b2a2a50a5f567a0c55e4bc006456159acbdfed","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.021030001_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.14 Microsoft.NETCore.App 3.1.14","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.14)","dotnet-runtime-deps-3.1 (>= 3.1.14)"],"sha256":"10563481588e18f8d8ed70d9b99a58c158b98b1ef8159c789ba55073bb240a67","size":21744410,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.14-x64.deb"},{"package":"dotnet-host","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.16","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f3beedd7786937c7fa0cf6fdc620a9b6e9a0630d49e36f868bd22526ad402bb","size":55864,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.16-x64.deb"},{"package":"moby-engine","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103382,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a5aba3a499328a654304da3ec4d5ca323c96c7849ff05f0f6f854bb980f1f435","size":22538834,"filename":"pool/main/m/moby-engine/moby-engine_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.3 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.3)","libc6"],"sha256":"d2d7de4f041b6168ae2a7be47ac3840fcb8da578f77ee0e52fda25ef5b9261c6","size":140808,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.3-x64.deb"},{"package":"dotnet-host","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d4b1ef40a32e948e99370003c3e89f4834d509b6707c5709d53b1ebf1bfe6c14","size":57278,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.8-x64.deb"},{"package":"moby-containerd","version":"1.3.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126915,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b875b91d14263bfbf3eda9313a15375f74cfa22d94e6c0ab03d62fc32032a186","size":27677300,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.8+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"36ff1945d3e7a0c5cecd8f5618a4e2790faa7cd802bda9468e09bbad39e0c8d1","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.5-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.425-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.425","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.31)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.31)","aspnetcore-runtime-3.1 (>= 3.1.31)"],"sha256":"d5baa261325602144fe72944358d02371a8dbec5d2df322e7459a4dcde0dd60a","size":49834620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.425-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71114,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.19 Microsoft.NETCore.App 3.1.19","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.19)","dotnet-runtime-deps-3.1 (>= 3.1.19)"],"sha256":"50b3441944ac5bd8b56cf77397327cb3974a7f645047ab67d6886e5ccc8def9f","size":21752250,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.19-x64.deb"},{"package":"mdatp","version":"101.24.45","architecture":"amd64","section":"devel","priority":"optional","installed_size":151288,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"862be7267065eb548f25fe8ec8654bb43d92d1b80188def5b8818e805787846e","size":44872594,"filename":"pool/main/m/mdatp/mdatp_101.24.45.amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.5)","libc6"],"sha256":"26ec1b1a281088177f66da1de36d31fd31a427f5a0e42b18538dabc503d52a1e","size":143998,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.5-x64.deb"},{"package":"dotnet-host","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"19d6e6d8937060556a8efc783fd27a32e7424da20c39ad933e27342c365f4d1b","size":52590,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19872,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.14)"],"sha256":"0734d77b6149db2d071b8b15f126cb9f7da613166cdd6bc835b791bad9f666fe","size":6612218,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.14-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4a991eb6e48937efcce608f70e0c2357df03d3d85bbe071071a0307b21dfbbc6","size":227788672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4837-1.deb"},{"package":"az-dcap-client","version":"1.8","architecture":"amd64","section":"unknown","priority":"optional","installed_size":306,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"96b4f5d6bc3d4ca79de4ea99b3cb3f1c7d518678397e8e24dada9034a53df036","size":63924,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.8_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.21 Microsoft.NETCore.App 3.1.21","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.21)","dotnet-runtime-deps-3.1 (>= 3.1.21)"],"sha256":"e2283c2375c028a33decced88a16a94d4e196b4decea7d3f61e2f7e9e0cec41d","size":21754372,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.114","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"5e73956aa56a60e1e89549e0d33fdfa6614b64234632baabb4a5c89076b61b70","size":78676286,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.114-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"80fe990383c5ed0f6cfa98079e98d93ad46324b84e254b8e8fee8150c813efb7","size":141836620,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4544-1.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.6 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.6)","libc6"],"sha256":"e3423518b16a0cbaaaddc030121ab010e47a5da00474be54cdf4260fbf31398f","size":121074,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.6-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68400,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.4)","dotnet-runtime-deps-6.0 (>= 6.0.4)"],"sha256":"01f8138ab2c5d9070f1890822f4c4dc24692b6a913b9787c9df6892aff11a234","size":23011424,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.4-x64.deb"},{"package":"dotnet-host","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"380fdc61ed10647dde7e1cf2580428c1e5ed7c492c58636e7e57087ffa30852c","size":32416,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.25-x64.deb"},{"package":"moby-compose","version":"2.1.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"73bab455d7ea48f0d15b363a15237dc7299779e05a5c16c3515e95ef52ca7310","size":6295332,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e335ea6e6fdf673e537b320a9c194b55aabf77d1a8de548941d13a008bde2398","size":21199964,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-1_amd64.deb"},{"package":"moby-containerd-shim-systemd","version":"0.1.0~beta.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":30091,"maintainer":"Microsoft ","description":"A containerd shim runtime that uses systemd to monitor runc containers","homepage":"https://github.com/cpuguy83/containerd-shim-systemd-v1","depends":["libc6 (>= 2.14)","systemd (>= 239)","moby-containerd (>= 1.6)"],"recommends":["moby-runc"],"sha256":"a8265847f51b994ae68a7e05b2768dca28c037aa8e9499e02ffeb38aa3e525de","size":11959090,"filename":"pool/main/m/moby-containerd-shim-systemd/moby-containerd-shim-systemd_0.1.0~beta.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-common-media (= 0.13.0~beta.1)"],"sha256":"58acb3b752c6503043aaf1cfcdb3ce19ae976ba01f548c7f75dc6a91c0bb33fe","size":150004,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"241bb67ad6d16299940702fe03bff3fc17bff41d8ac8e72ba83290c5232a74c0","size":59709278,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.407-x64.deb"},{"package":"mdatp","version":"101.25.63","architecture":"amd64","section":"devel","priority":"optional","installed_size":155265,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"6c06505c5e2e9fe6a1e63dada236173729f337039fa5333f7a6026bbd0650cbd","size":46140804,"filename":"pool/main/m/mdatp/mdatp_101.25.63.amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227344,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"6a056d7df7133fb877e8f77d234642ca13f88dff9861d74738569fa9c9e02e87","size":58722724,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.302-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8289d669492f741297929c892421d04b3bb0830c5435baa14a578c45ff039827","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019630001_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"6b2b8194c70db56df207d29a1fc982494607c0e6478cf650cffd8973662d1e2a","size":3523898,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.2-x64.deb"},{"package":"procmon","version":"1.0.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":51981,"maintainer":"OSS Tooling Dev Team OSSToolingDevTeam@service.microsoft.com","description":"Procmon for Linux","homepage":"https://github.com/Microsoft/Procmon-for-Linux","depends":["libc6 (>= 2.31)","libstdc++6 (>= 10.2)","libzstd1 (>= 1.4)","libelf1 (>= 0.176)","libncurses6 (>= 6.2)","libtinfo6 (>= 6)"],"sha256":"7b989d56a131bd40a8446ad957f1f546ee9152198564354dfb5476948ba95cb0","size":19862512,"filename":"pool/main/p/procmon/procmon_1.0.1-339_amd64.deb"},{"package":"dotnet-host","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.22","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"08db6e033a295f61b61c4b7145530cce7dbde0dd485a58e67fa98a0873b7abc2","size":56000,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.22-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f04b2dab917e9b09b5b1cdac3033c8048eb822d7dae1991a0827a2c7ccbcbf97","size":156746648,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5274-1.deb"},{"package":"aadsshlogin","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"59c9bf98488d40ce7ec735416708f9117f2d7ec5dd1cc7bdccc4feaa6ff33a9a","size":421814,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020950001_amd64.deb"},{"package":"dotnet-host","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.23","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec31c357657956224fdcd301fbd64535bb2e3343fc10823c35a5c906e0573ac9","size":36584,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.23-x64.deb"},{"package":"mssql-tools","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"9e68a0f83ba7e770449e399b1513edc9826aa0c3a58e3d911ea982a362c6c41d","size":212296,"filename":"pool/main/m/mssql-tools/mssql-tools_17.6.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"849c5f843caf50de8804d6a844501f8cff8af42cd3a515683c61de98e8e8d8d8","size":32812,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.14-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.16)"],"sha256":"d4e52045a7aeb72dcadcbcab02c644253d73d7fc0f9942636a47bd36bcaf117d","size":6612278,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.16-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2a4a5500354c749fca852837ca6df935e709bf147995ddd7a1407130931c9133","size":26976612,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-3_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49824,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"32d6d1eae5e5619551b2a2704526ca2e46771b67d7170fd20df9fc0e00ba3da0","size":9653820,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ddd3c0eb7332dacfecf2a3a8ed8988439431c5f9b6b84a08e92edadec9024b08","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"04c85e431825e28b2bbcf43e18f3f8bacfde9686ea78dbba815a61e21078bf56","size":2810,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.116","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"6ac2f5102837c57d6d66a4336a1631b0cc6607b02b8a2271bb6fa43cd9c15876","size":43510406,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.116-x64.deb"},{"package":"dotnet-host","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f058e88012bda709259371aad36f8c8e51494835dd43b09ba3acc8094c1a3cb","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.12-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68444,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.16","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.16)","dotnet-runtime-deps-6.0 (>= 6.0.16)"],"sha256":"c61139846f6ab095ef9b3476feaf955eb82042525da39bc512d8eda7134f8c6b","size":22707182,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.16-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70820,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.5)","dotnet-hostfxr-7.0 (>= 7.0.5)"],"sha256":"6fad7162dbcf639ebe9609c6b4ae4167dc0488ae7c0581a6c322c007259cffa3","size":23193486,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.20 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.20)"],"sha256":"ee7e20d382b444fad8299534c3133d27180af3cdfe4c82e401298e64bfde618b","size":21927704,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175287,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"c3b8a52fd632b2a4e36fd85f7bf106cd58237cfc098687df8a2312d4d8a46881","size":43432848,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.202-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71232,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.23 Microsoft.NETCore.App 3.1.23","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.23)","dotnet-runtime-deps-3.1 (>= 3.1.23)"],"sha256":"fe6490d54339207c8f946b7f15d5770ec2d08ab37cc55d5c86da27bceb2943a1","size":21817076,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.23-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.9 Microsoft.NETCore.App 5.0.9","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.9)","dotnet-hostfxr-5.0 (>= 5.0.9)"],"sha256":"f0a48fbfc02dec7912902ad28356d282212dc0b6f6823bdcca7d2579bd2296fd","size":21522292,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.9-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-4","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7-minimal","python3","apt-transport-https"],"sha256":"839c820fdbf60e2ef630c5444ed52b172cc6e51380ed2e84f0e5c49784ecdd74","size":12482,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-4_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175200,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.107","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"c78a136dc95f35e7c59d83287185421b8b537ee49bd150312e32c462f463b726","size":43694236,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.107-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.13)"],"sha256":"8dc6bd1555aa8cab7b1e37434a8ba49e24c1d427cf8cdae4203c3a72f901979e","size":7064190,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.29 Microsoft.NETCore.App 2.1.29","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.29)","dotnet-hostfxr-2.1 (>= 2.1.29)"],"sha256":"f6d4a92499646860af596f86a0a4cf4319887149bdbf09807d0cf6a1e0aa56bb","size":20506622,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.29-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.211-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222064,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.211","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"ca310e5c489a53cd12cd5e00535269572d5cb7443dd242eab568629553c1a1d0","size":57090632,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.211-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.23)"],"sha256":"968b3d4a4417eaa5820cd2ac8c4ec35e0b6d67e1efb996461644efa175b2567a","size":5771268,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319917,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.203","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"debc94f20bcb9123d2c3bd8c369049d8af2858791da3a114c953786da442c1a2","size":80517208,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.203-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a5d634cb0d45f125a3760972b8b4accba973a18226083ee024e987860eeefe22","size":2672,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.9-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"5425475e280b41cdc55df0a2dca006cc0c88c1b2d86662a0c487091e375b435c","size":3523526,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.13-1_amd64.deb"},{"package":"procdump","version":"1.2-359","architecture":"amd64","section":"devel","priority":"optional","installed_size":292,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3499e3c5ec87145fd656dadb03e6ed9ecf200453f83c6bfe6d2d73572e74e7c3","size":95620,"filename":"pool/main/p/procdump/procdump_1.2-359_amd64.deb"},{"package":"azcmagent","version":"0.10.20195.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"4e559522e0c89907e55a576508ec1f76fa15fcf9c93d25c015f92c9fdde6cb21","size":34075864,"filename":"pool/main/a/azcmagent/azcmagent_0.10.20195.006_amd64.deb"},{"package":"mdatp","version":"101.98.30","architecture":"amd64","section":"devel","priority":"optional","installed_size":305838,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"dfec95ca4abf684f6818ad812a68cb324660a8207b5d269029b188e18a6a1afd","size":119529588,"filename":"pool/main/m/mdatp/mdatp_101.98.30.amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19885,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.20)"],"sha256":"843d5b35e21303e2e9575436c5b4c59e7795186dd4a8759eada1cf23cecb6c6d","size":6613502,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e6a14e318f264a02f26a872c2e0c2549b0081075de95b0cde221b438a1f90a37","size":54509148,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71080,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.21 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.21)"],"sha256":"a95ab0fba4b44a70f83d9430731fdd4e33fb7b25b044c301d6db22ce2db50fed","size":21919612,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.21-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"fafcef4bf72ce0f1e04f2a7ec0e81007e608ab5634aaca0798f307b44165f66e","size":499544,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.6.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19838,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.3)"],"sha256":"c6f2932646657fc4ba8921d7668e462883a5231dfb7875bf3e4a209aaafbf2c0","size":6601416,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.3-x64.deb"},{"package":"dotnet-host","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"49d4d28af9f1f097b60da2b8518d54729703542556840a988fdb188cdf9a278c","size":36650,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.18-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["apt-transport-https"],"sha256":"0cfe901ab94e9795ee5ef62180dee5192053bc6f132126e40f621b273f545762","size":12264,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-2_amd64.deb"},{"package":"dotnet-host","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8a635a0abb40c0ddcc6ea2cf3e932a4b529360d0a1cda10a01e5b5fe36007436","size":32906,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.9-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4264cfb88a9565f15594d8b54ec57bda33e06684acd8d5c9d3081ceb5089e750","size":157254364,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5390-1.deb"},{"package":"powershell","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9132d97fea77d5a8de56b5801b7579bdc1ce669dae084295ddae6b43cf5a3fdb","size":69382904,"filename":"pool/main/p/powershell/powershell_7.2.5-1.deb_amd64.deb"},{"package":"procdump","version":"1.4-13733","architecture":"amd64","section":"devel","priority":"optional","installed_size":11065,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"459930388ecacd1df86996b86fe3c52a714a3a4f9eecd62d594e6e92eb83ec4d","size":1646306,"filename":"pool/main/p/procdump/procdump_1.4-13733_amd64.deb"},{"package":"mdatp","version":"101.80.97","architecture":"amd64","section":"devel","priority":"optional","installed_size":278033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"28535a2926aaddaa715cd559ab06e1db9d70546e355c6c8b57ab9de58feac2f3","size":112232294,"filename":"pool/main/m/mdatp/mdatp_101.80.97.amd64.deb"},{"package":"moby-engine","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d9802f061fd24ef6df5db7c64173525b197a084ff982e6fbf2d6ba4fea047f24","size":22479456,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1035.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"6011d41e8e1db082d711d80b98eb923db9ae2bd81b75a7b8951a32b572b7e6d9","size":226516056,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1035.1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331328,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.309","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"1b15ae59bf908d402771e5f04ce49a9e1e79e56efbbf37f51e44ae85e4fe5775","size":85106134,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.309-x64.deb"},{"package":"moby-runc","version":"1.0.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20366,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"60f4a66821abb4c6bdccd3303ee8016572acd3ced6232beb0ab8892dbb9f39fa","size":6695040,"filename":"pool/main/m/moby-runc/moby-runc_1.0.1+azure-1_amd64.deb"},{"package":"mssql-mlservices-packages-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":1166747,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Minimal install). Provides revoscalepy and microsoftml. Excludes pre-trained models","depends":["mssql-mlservices-python","libgomp1","microsoft-openmpi (>=3.0.0)","mssql-server-extensibility (>=15.0.2000)","zip","unzip"],"sha256":"758899dc2be1d7b359e459d3017ba4c3943fed31a8cdf51159c0029dd84b472d","size":391350996,"filename":"pool/main/m/mssql-mlservices-packages-py/mssql-mlservices-packages-py_9.4.7.958_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.523-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228602,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.523","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"de54ae0983b981fa5ce72bd6d670ae23104b789bffec79ee2cbad1bd415f29c7","size":89337968,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.523-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337371,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.411","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"84f679ab43f1a1f9a9c55801fc7b8be18159b4d39a25e4cdb6e79df3ee4eea05","size":86793590,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.411-x64.deb"},{"package":"libmsquic","version":"2.2.1","architecture":"amd64","section":"default","priority":"optional","installed_size":17370,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"75ff0c9d79a479a06b4639e59143eed78f6278e04f502c682732e26c0bd739ae","size":4564454,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.1_amd64.deb"},{"package":"msopenjdk-21","version":"21.0.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352673,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"5fb5615e574cabaf0dd699797e738034523810d46b15a811ddec67b029d40744","size":176352102,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.1-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.8 Microsoft.NETCore.App 3.1.8","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.8)","dotnet-runtime-deps-3.1 (>= 3.1.8)"],"sha256":"58b750cac76d6e553d55731f03cc484a0f74e1539c86b8d4c1f4361a9a90436b","size":21765344,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.18","homepage":"https://github.com/dotnet/core","sha256":"6bbac63b66f8b3b0cee25d7e0a952f29723bab86f44184cc58d8e7ea05672897","size":41912,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.18-x64.deb"},{"package":"azcmagent","version":"1.4.21070.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"bb4843d9264533220d1ee8d13edfdec5f639257cdcb8152dbcddf60b07045bf4","size":18061030,"filename":"pool/main/a/azcmagent/azcmagent_1.4.21070.006_amd64.deb"},{"package":"moby-cli","version":"19.03.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83545,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a4d0f91e818dacdb189bbf923a2f1ea393c061e43b32bc0fc916aed5c571efb8","size":16420708,"filename":"pool/main/m/moby-cli/moby-cli_19.03.11+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.123-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.123","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"5ddc3e6e75eb51c2310082120b0bf93c960fbba747869b392df4989ebc8410e3","size":78945110,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.123-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120054,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2291a34f3f8f15c17fbef62e1412c2ded8178608d09a8441fbd65a1f4cb5301e","size":26994720,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"40e5dc44634227b722c8f5d25c7a8e5675a198a9e9befc1e7d646f45ae37677c","size":10587520,"filename":"pool/main/m/moby-cli/moby-cli_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b204c9015fcc56ba8397286a2ec440964c498b65fa9ef83effe64d64a782c29e","size":2800,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.12-x64.deb"},{"package":"sysmonforlinux","version":"1.1.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.1.1)"],"sha256":"da5104110392ea4362980b2a4794f71c3b99fc37372df645193ba73d68e3243e","size":1530018,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.1-0_amd64.deb"},{"package":"moby-cli","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafc180e60330284cb8058dda081a563238121aeaaa686ed3dee211a3cd01eda","size":10587576,"filename":"pool/main/m/moby-cli/moby-cli_20.10.8+azure-1_amd64.deb"},{"package":"moby-containerd","version":"1.3.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126931,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"84c208d774bd93f4b35567359fe4ac51b52aba7861b4b426f58c014818b219c5","size":27658608,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.9+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.115","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"75839c38082c6a12f50210010f3db9c1c7570853664b5ae31806835b12e4936e","size":78668378,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.115-x64.deb"},{"package":"moby-containerd","version":"1.4.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120026,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["init-system-helpers (>= 1.18~)","libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"5f8a73e8b1dd7ef167b85fe8778d3879ed0cb76c7493d89bfc286e8c03a1cbd7","size":27328778,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.8+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"758f26010760cd1b7e36aaeb4c04903d1b6f0544809e5c2d2b302d130a5d553a","size":3523928,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eb256873e4cc87bc58d309da546fa07c13fb3b979437a3da2036cbce0cb4f1e4","size":158763596,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4895-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.516-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":229026,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.516","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"39e874bcdef1e41b7f8ed6f9747d4b9422fa29a4bea185934791b6b88d819cda","size":88800084,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.516-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.28 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.28)","libc6"],"sha256":"9e32978def8d2974dd8e1884e0661fd89a66923ae40d8afa8e88ec5a804f3b55","size":120692,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.28-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3125,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"fcf42631731b58d2c9017fde53ff7c1f5cc24013f264e2484e5c9fcad000dbc1","size":853504,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.4_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.514-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228764,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.514","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"fc29ebc3fc802213fae488f6b19c26b288e4c2dcf678d52ab05a255cfff9a7f3","size":89261598,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.514-x64.deb"},{"package":"sysmonforlinux","version":"1.3.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"7f12efadf7332ca8cf6f84980b4dab8947b35e57e4ea159b757678da4c685cce","size":3204094,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":8998,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"e46789887409f1c15a58e15de83dcb4ab0ee0d85bf43b7eed26c95164173615b","size":949024,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.3.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.1)","libc6"],"sha256":"4bca2d54df5756f1b361876940374502d13bd7f6a282080e8479cb44f2bd2aae","size":143974,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.1-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.12)"],"sha256":"42f106527e3629dcb4ad94c463f7b4fbec07587d3899b9f3629f2eb975611792","size":6084640,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.12-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c95488e066f938e6293333142d9d28246393ab388e8132ec0a131448ba322973","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.17-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367144,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.309","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"f3a9e3fe50a489fed2d245de896f015ddad0bccd8de94f7fc471711327e272fc","size":96629046,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.309-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3976d4e13d7479b7a9768adadb6ed39a8ae039f6e6a6feff7f9fee3f24cfb08b","size":156787220,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5312-1.deb"},{"package":"dotnet-host","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"11057d665df8116673ac80ca53ba4a9a3269bfa6ed388fa2b4fdb19137419acc","size":36516,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319710,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.201","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"548e27d4c5b6560f91a13debf2e6337d1c6fa4f7640edf457b4262693adc056a","size":80538626,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.15.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.15.1~beta.1)"],"sha256":"debc3c3de7c09b9cc825fcdc157e74b7a1d436c8f294cd3afe766a114836f675","size":80022,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"iotedge","version":"1.1.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":21774,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.9-1)","sed"],"sha256":"fbda5dcebc6c8b304b635fb5bc1dad31a29c58ff904da74077f77477ef065f52","size":5205412,"filename":"pool/main/i/iotedge/iotedge_1.1.9-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"17e137e6afeb1ecec0f417dfad45ebbc04b5ef0f5eafec995e9972e5abffae0d","size":10214,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015090003_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.26","homepage":"https://github.com/dotnet/core","sha256":"186548e9c722eebb8317a826fb1dcccf1a402e33f086d7f88b7695bb155c1f22","size":42036,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.26-x64.deb"},{"package":"mdatp","version":"101.34.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":149583,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"c74f1485c2c1741190b1b7159077b1dc88ea023d2be967f62cd60da0e151dde8","size":44125452,"filename":"pool/main/m/mdatp/mdatp_101.34.27.amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174867,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f3d8ee4df9a80856a1dd968a1ea80e341c09a26eec7907a5cff825f234271280","size":68369482,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.1-1.ubuntu.20.04_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4824,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"0fded967b3068f387c96304c3df40e4f1475654ce7e981eaee08aa0261a1e6ce","size":1861004,"filename":"pool/main/o/omi/omi-1.6.8-1.ssl_110.ulinux.x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"bd8a0ae1102ed9e2ba317529c889024ac07fd0fd2a2a053e0af1938805ab35eb","size":1314134,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.16-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.20 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.20)","libc6"],"sha256":"568d44dc56ba8b9a1b9ed49699575f5bd9735adde91ce76f8a594185989e924a","size":120832,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.20-x64.deb"},{"package":"moby-cli","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70472,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"94a944da36bf361996e26544e4173f0c068093d455b720caf5fac4447085f306","size":12147772,"filename":"pool/main/m/moby-cli/moby-cli_20.10.7+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"43761ba143682b53b883675cd17a70bb7f89defa6162f7705354c603cb8284fe","size":152285560,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2628-1.deb"},{"package":"omi","source":"omi","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"f724b1039e8ec0b382fdd69a5e753666e0f752b8b8fc8a4504e218dfc1e96c65","size":1884694,"filename":"pool/main/o/omi/omi-1.6.10-2.ssl_110.ulinux.x64.deb"},{"package":"powershell","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"93612aa09171838e997c85b78f6fe42041fbc73741b9751f975b1e908d6e77f0","size":69457500,"filename":"pool/main/p/powershell/powershell_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f39f88e19d93e296841c9a7a072ea4d8bd6855cce4278f5ba0a51aaf1508785","size":32768,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.5-x64.deb"},{"package":"moby-cli","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":35184,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafb6aac41b3af3df5bbc6652d16408b3c4349105c60f6ba9708a73898520447","size":13037282,"filename":"pool/main/m/moby-cli/moby-cli_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"6c363e4748de6d674af31db7ba09cee89dae9c22636e883bd418225c08b64926","size":2127714,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.10-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"1.0.6","architecture":"amd64","section":"java","priority":"optional","installed_size":83681,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"5523be2d7b0a502b34268f94b1c95d4a892500b1ab69a1ab0e9c9cafb7c62bbb","size":77280998,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_1.0.6_amd64.deb"},{"package":"mssql-server-sqliosim","version":"15.0.2000.173581-5","architecture":"amd64","section":"misc","priority":"extra","installed_size":688855,"maintainer":"Microsoft Data Platform Group ","description":"Microsoft SQL Server SQLIOSIM","depends":["libatomic1","libunwind8","libnuma1","libc6","adduser","libc++1","gdb","debconf","hostname","openssl (>= 1.0.1g)","libgssapi-krb5-2","libsss-nss-idmap0","gawk","sed","libpam0g","libldap-2.4-2","libsasl2-2","libsasl2-modules-gssapi-mit","tzdata"],"sha256":"da98d84586f19a9ddce428f04a504b3afd2a78a546084ddb97be87261cb1b2cd","size":275507482,"filename":"pool/main/m/mssql-server-sqliosim/mssql-server-sqliosim_15.0.2000.173581-5_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"31e20c09d20ae7e532ba362411737b526cd08ad64ced422fa6ffb46285c243e3","size":227705672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4669-1.deb"},{"package":"mssql-tools18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"4475bc79d1a909605846d351ed237631e7f09d33c0125d4dbbf265e72f79b9aa","size":211222,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.0.1.1-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.521-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228520,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.521","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"a25df3dbd37b6290b8e135ee7990b2a4e71c80d45fcd93dabfede62846b41faa","size":89215248,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.521-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.7 Microsoft.NETCore.App 3.1.7","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.7)","dotnet-runtime-deps-3.1 (>= 3.1.7)"],"sha256":"72280aa6efa11801c6122ac04d69743ef2d174c006b016e95dd7a5ff6cdbeca3","size":21784186,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.7-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68403,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.8)","dotnet-runtime-deps-6.0 (>= 6.0.8)"],"sha256":"c00f193c145dbe8b518b9eea0506db8f9667205eb953e0399c9652eb79d1dec2","size":22977266,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.8-x64.deb"},{"package":"moby-compose","version":"2.3.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25856,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ef10e25980ca3063e0e47aa1e4bf696acce9d18b461d8bd52d72be497f3b6f5b","size":6533904,"filename":"pool/main/m/moby-compose/moby-compose_2.3.4+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16145,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)"],"sha256":"9dda765ea87c75ac95ca3bd36ea5bef5935f0d56de1d39a9c65d903aaf174436","size":4976178,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"641b1d131285d90449bc0e2051ca8b47b1cc1a8c6221b137dbf3f224e03e3664","size":3505028,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.1-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eac97fb739bdd5b39f9813f1376cb0cf419d87657ae5f6c2fb74b263ff5b398e","size":166080896,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3023-1.deb"},{"package":"servicefabric","version":"9.1.1230.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"86d09942e5f1b9aaaa51d714f1974d4cd9c6e6128b102cc3c103d9eb772770ec","size":219806842,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1230.1.deb"},{"package":"powershell-preview","version":"7.3.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195779,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5cca8118d8e2238bd4c7ed40a2cd370c12320ea5096aa5dfc6ab4911f3d6e7f1","size":71153972,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"6e37c1a434eb56c348f0371a658bc3e68f1332fc9f41dcb94a5c668a57434ef3","size":3509404,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.8-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68341,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.10 Microsoft.NETCore.App 5.0.10","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.10)","dotnet-hostfxr-5.0 (>= 5.0.10)"],"sha256":"a24a42a7bfccebe91fa973f09288b4158632a057d8a87108806f5ffaf00dc720","size":21664136,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.10-x64.deb"},{"package":"libmsquic","version":"2.1.0","architecture":"amd64","section":"default","priority":"extra","installed_size":22568,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"1b4cdb99cf8e012c21098ac60cd6f1a364e4dc191173cb5e8782032eaed30e39","size":6402384,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.0_amd64.deb"},{"package":"netstandard-targeting-pack-2.1","version":"2.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":19773,"maintainer":".NET Core Team ","description":"NETStandard.Library.Ref 2.1.0","homepage":"https://github.com/dotnet/core","sha256":"0f12001d1918f7ad2452d14d70bd396c82080b691407735213e90de637061f57","size":1476016,"filename":"pool/main/n/netstandard-targeting-pack-2.1/netstandard-targeting-pack-2.1_2.1.0-1_amd64.deb"},{"package":"libmsquic","version":"2.2.2","architecture":"amd64","section":"default","priority":"optional","installed_size":17401,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"a4972341d1579569c738a1de4118fc076cfcbb4a4e5b63e1459ddd59b29eb3de","size":4569798,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.2_amd64.deb"},{"package":"mdatp","version":"101.04.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":68366,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"c121d4fb5728139f2b3ba50d5de6fb5703e1139118af2262056c4d2818d7db0a","size":20445826,"filename":"pool/main/m/mdatp/mdatp_101.04.76.amd64.deb"},{"package":"moby-cli","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70537,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"85cdb0a043d8edfcfe82144526661da13438201edb7d2984df0cb6c26169a0ab","size":12181032,"filename":"pool/main/m/moby-cli/moby-cli_20.10.5+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.10)"],"sha256":"eea82ce5151760291cc9ad3d16eeb43f4fa1559f91ba0c186354822cbe97bd54","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1e55812af3a9d6a640104018bc37157ae7c5c88a742bd43bb86cf0cf6f497884","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"c73045067b66eef7d977ef52b3795d35e3b82a4016b45f32a30c3b2108e4bbfd","size":3521952,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.0-x64.deb"},{"package":"azcmagent","version":"1.20.02012.246","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"25125a7d7badbebb380d09851eb4a4b5969a081e7f1c6318c9ae046d76a076ae","size":52490324,"filename":"pool/main/a/azcmagent/azcmagent_1.20.02012.246_amd64.deb"},{"package":"moby-buildx","version":"0.8.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67232,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"fabbdaf903c269a615a9099dd9affa8476ec75e68ba54b2d0a88aa4442cdf493","size":23117324,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357028,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.202","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"7cb68886075b3361642aadd467bb4335f635d9471fcc3600d97cf8d6ec6ddaa8","size":91828358,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.202-x64.deb"},{"package":"aztfexport","version":"0.11.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"1deb19cd102b06a8444878c2b92effc0fa6599d44118519001555136c6614a1b","size":9403238,"filename":"pool/main/a/aztfexport/aztfexport-0.11.0-1-amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.0)","libc6"],"sha256":"7be696a38a2b7c6c0d000678b8dc028d48651dfc409f9c6cfcb091b2b8604fa2","size":140842,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.0-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"16595bc03b136fdb2fe41c5a326370472452543e6d320f5c3dea04f8e5f66b1c","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.7-x64.deb"},{"package":"moby-cli","version":"20.10.16+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":59397,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cddad90c0641734a6d2914e2ae5c9ccaf101764c6301dc6ac2cb1c4d72cf22fb","size":10275940,"filename":"pool/main/m/moby-cli/moby-cli_20.10.16+azure-3_amd64.deb"},{"package":"dotnet-host","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"47eae0ac1d31cfe189c0d1b7b3d3804512dacd5bc198833ebfcf25710e6ad684","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.7-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70840,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.11)","dotnet-hostfxr-7.0 (>= 7.0.11)"],"sha256":"fa711a6984616fe99212ded1e724154711ced7a404e8488d346eae0e0ca7efc6","size":23210182,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"mssql-tools","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"17d9bec19aecf32db61ff9be63c51d0b5eb332965deacb119915d1aecc447faf","size":210584,"filename":"pool/main/m/mssql-tools/mssql-tools_17.8.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.19)"],"sha256":"b75917fef8f2599d1d589e0852f8d83a125f236d6223693a5d07dccfb52e1719","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.19-x64.deb"},{"package":"libmsquic","version":"2.2.3","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"834decab349d3505421a5fb3de2e75d9d28c540d6cf60d5d83c631f7d866695e","size":4576276,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.3_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.11)","libc6"],"sha256":"c5da373a2a75523c25dd212534c37ed6bb14054de2a174e3fefe32df6595016e","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403101,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.402","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"882135010f01d9e5910fa74c786791851b205b7968cab9146849169a06caba7e","size":108189490,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.402-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8bac3dc53fab2fbcaf0a4a9406e72934a9070698d7678bee05a3b720cc580b8d","size":10144,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015950001_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317508,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"fc126a9bb2987bfa6425e72e24d481e98d1fb80abff88558ec135a5b5a42c891","size":166575154,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20.1-1_amd64.deb"},{"package":"moby-buildx","version":"0.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76252,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"e20e3ad6da8f27a77ffd2026ad8c4895cbff849ed7353788178b62be1a948d3c","size":28218310,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.4.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120038,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"3117b7ff5601d415141163ca19a32a6eca87f34c653a3f9b8a9623948c01810c","size":26961964,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.212-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222404,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.212","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"d0310b6dd5b9f2ed3e37c534d2cbaedf0a8da4e1122a2c2b6976e95ffb5dc148","size":57384856,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.212-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71083,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.24 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.24)"],"sha256":"96893026ba8f5d7ed0365960bd2f1e9b4d915bb3e1fb910ae5bcc3815cfb648b","size":21933302,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6acec0ac75a21a0081b2000090c2e0dd9c79016e1d85e8eea6129e52eba3b87f","size":124360040,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4629-1.deb"},{"package":"mdatp","version":"101.52.57","architecture":"amd64","section":"devel","priority":"optional","installed_size":186593,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8fefc473943f5096ef74a41e2d1830f90a09e4cd96609d734903bab67fb1503c","size":54831640,"filename":"pool/main/m/mdatp/mdatp_101.52.57.amd64.deb"},{"package":"unixodbc","version":"2.3.11","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11)","libodbc1 (>= 2.3.11)"],"sha256":"c77073cc0e8c641e708d08f9e9360541d98c2d9b1cefce56791866f788bd329e","size":51530,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"caebc792731e03b35387c703705967fed4e7215b649e9c2cef74632f2e38c986","size":227774608,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4806-1.deb"},{"package":"dotnet-host","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"cf12c37d476d235791f785f1e62688fb3f2a4e59c81629b8d8b63e5bdf6fff34","size":32924,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.6-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8c3aa46619d36596cc6325c2e18ebe70611f34fcaeda4c9311e6ccf6fc01d60f","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.24-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"c1d0c68d3c49d41e233931a6298b2f0a659b557beb4a3a2aa4d306583a373a32","size":3509660,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312664,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.107","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"5698bf62dedf1a1ec22304245d131c274e75f494c78a7b387b8b7a142ce28e74","size":78043244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.107-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.814-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241067,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.814","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.26)","aspnetcore-runtime-2.1 (>= 2.1.26)"],"sha256":"e32d4dd6800c2075c20001828e4896d33759c5c4cad8840cfb5e0b0a61ff33c4","size":91748748,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.814-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71116,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.16 Microsoft.NETCore.App 3.1.16","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.16)","dotnet-runtime-deps-3.1 (>= 3.1.16)"],"sha256":"6f8196101ef19b12fa94c9db6642afb842172db9c391b764126b3567f06d6e93","size":21769106,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.22","homepage":"https://github.com/dotnet/core","sha256":"3d288e067550427b67057f24260ea8cbe2f15f7620aa9f4141f5836d848af2f8","size":42338,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.22-x64.deb"},{"package":"moby-buildx","version":"0.6.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59988,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"55d1b3342acb3451fdd1e8b4dfba53069c3f928e393235ea88349e1e0832462e","size":20975064,"filename":"pool/main/m/moby-buildx/moby-buildx_0.6.3+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.317-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331557,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.317","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e332d89262c096975451b24ee0330af9d96f3862d2088a6f322828bdeae3aa80","size":85292586,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.317-1_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"65f34ed79c6bbb46d6cf18e13dbaa462282b81e4b18bac52b2742099208bbd2e","size":155268560,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2796-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.28 Microsoft.NETCore.App 2.1.28","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.28)","dotnet-hostfxr-2.1 (>= 2.1.28)"],"sha256":"94d239c104eaeb8de96537448c51e219ec89585ebc13ff63f5626677a46df514","size":20814298,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.28-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.113","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"08b51645b7483e355d8560031b2705e4cd6cb93c3f0c37c52cc63fdbd7c3aad1","size":43818916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.113-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222041,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.5)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.5)"],"sha256":"7612ea0058043ef44665071f0360de87856353141e427390ee7181e219062ae5","size":57105162,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.202-x64.deb"},{"package":"dotnet-host","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b6ceccc4f0feb49b917b66af106c196c9407a5b57ed9b67b27f8aa92f2204c2f","size":32600,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.15-x64.deb"},{"package":"azureauth","version":"0.8.2-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"4a5f24a5e999a8a6c88dae58182bb1edf0259f0b5ef49e4b3d08e15384072bc1","size":24113038,"filename":"pool/main/a/azureauth/azureauth_0.8.2-1_amd64.deb"},{"package":"azcmagent","version":"1.3.20346.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7d8627f1d460601c10e472668a5e521c4af13f7df19aba55af96d1e453f748d4","size":18323922,"filename":"pool/main/a/azcmagent/azcmagent_1.3.20346.001_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.2","architecture":"amd64","section":"default","priority":"extra","installed_size":17616,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"e605e0cbfcd7061151efb24692097b4ab09ba6417b7a50bab2b5bf4496dce170","size":8349226,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.2-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-host","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7c9909580189ff3d3d91ac83c11dc3ec97ce862e652ca67ea6738dbf83eeb1bc","size":32448,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.20-x64.deb"},{"package":"msodbcsql17","version":"17.10.5.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"5a3ab39be1db72785a3f912c04d8e5a90c27fd7f628a413405d9b9033b84880c","size":749060,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.5.1-1_amd64.deb"},{"package":"azcmagent","version":"1.34.02440.1130","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"539864450190c5dcf44324c571a7ba99ed9ef4c74a99b9d97859c93213d4e815","size":54823178,"filename":"pool/main/a/azcmagent/azcmagent_1.34.02440.1130_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0fd87a5a6f9a7b63200abd189cb38286e8c58cd9fef34fb7ba0c028210bc69b2","size":270460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.12.2.deb"},{"package":"dotnet-host","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fbbe8b30c4b7c6c89119dcf4b59022cbb748466af203c2d5cfb8d8e6de55291c","size":55768,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.4-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.12)","libc6"],"sha256":"0842eef025ce499ec4ab04bb9b21baa16e7e4c92047478a1e2d2edeee7a9ea8f","size":143910,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.27 Microsoft.NETCore.App 3.1.27","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.27)","dotnet-runtime-deps-3.1 (>= 3.1.27)"],"sha256":"17394b210f5e438d273818dece094dbd34274b82cf7724b025b87b2cc20ae91e","size":22010700,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.27-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d5f98751774ccae04197b7d4932efe8f3545afda5dd309a8171805df6dabddd1","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017540001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175192,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.106","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"4639c629160639de7eec4619b4830e021b24fb0d30500f741b17d1c8dc1e604a","size":42924592,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.106-x64.deb"},{"package":"moby-cli","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"f735e2f6f437b7f03fa98421a70b79112f4c8b4f8fa1d209025b1bd0b0d2e70c","size":12121304,"filename":"pool/main/m/moby-cli/moby-cli_20.10.3+azure-1_amd64.deb"},{"package":"virtualclient","version":"1.11.5","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"45d2ac561ea209473e7647cbf18e544574b7a3c1d3b56a33c78709c13993b497","size":44774340,"filename":"pool/main/v/virtualclient/virtualclient_1.11.5_amd64.deb"},{"package":"azapi2azurerm","version":"1.4.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20908,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"0c6f68997ef36825f1e97b05ed227c8f12fecb3356029da3e10423c72b650661","size":6728440,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.4.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4604e1c0b284a336d13f9ec0182f3ad13c28360c6b76f441c9e66784ac6e36d3","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.2-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.817-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241017,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.817","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7e9ec00a9f124622c300510ce9bbf55857b4b03794f7583179f3c0f13a8ef02b","size":91745548,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.817-x64.deb"},{"package":"blobfuse2","version":"2.0.2","architecture":"amd64","section":"default","priority":"optional","installed_size":27889,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"2c59f5daab9808c18034460a5fbf417896af6ca6e6f14c293afd9dad408233c3","size":13168278,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.2-Ubuntu-20.04-x86-64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e440ee439dedac9ca32f22d071667983faeac58a7824679e8613b1f0615baed2","size":227762280,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4837-1.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68375,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.1)","dotnet-runtime-deps-6.0 (>= 6.0.1)"],"sha256":"b0ad2a9ef9c20650069f9df3f122406ac747aa5502d35d941a367a8c9b6691bf","size":22974272,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)"],"sha256":"ad5397ecbbc1ee438967c77c1d946a245a3d591d4427a83c3f54dc6d0fd597a3","size":5099424,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.28 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.28)","libc6"],"sha256":"bdc41745512364daa565cf6fa586fc3546fd8432ef70c179c31bcf5595cd8a30","size":143620,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.28-x64.deb"},{"package":"libk4abt1.1","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3328758,"maintainer":"Microsoft","description":"Dynamic Libraries for Azure Kinect Body Tracking Runtime","depends":["libc6 (>= 2.27)","libgcc1 (>= 1:4.2)","libgomp1 (>= 4.9)","libk4a1.4 (= 1.4.1)","libstdc++6 (>= 6)","libx11-6 (>= 2:1.2.99.901)"],"pre_depends":["libk4a1.4 (>= 1.4.1)"],"sha256":"0a507ffbe27b49127d53c265b9ef259d0fd993c30765fd612a1ef4054985dc50","size":1785149492,"filename":"pool/main/libk/libk4abt1.1/libk4abt1.1_1.1.2_amd64.deb"},{"package":"dotnet-host","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"395725e796a51348e6853245c06d0ec5b81cf038cbc9ebc4ec9f591f12ce7681","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.13-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a027e51a6927327dcd7f0e2ed2904119d3f474f54e1e521405cbbac79e619e2","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"34bdb4adc9be76d1496ff8281c4d66aed4ba8a5baf656fba7f75d9225d00354d","size":227764116,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4753-1.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"1e1b3c93eaa1f6fd742e7dd166928435d56ccce4217e1bbc6177f172977665a7","size":2567262,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.2-x64.deb"},{"package":"aziot-edge","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.0-1)","sed"],"sha256":"5649433a6fe9e89ec2fb4e9c0d2bb3979491d11c1bce35e7e8e018c909e15474","size":4203740,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.0-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.2.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17912,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"cb26d5cba1d1fa611dcf4f8dc7a5916bda3dd6b9077c4d91230b056e8c694130","size":3802656,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.6-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":175473,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38112c1586a450e87827823c559001662ca0950d580a611e3bf58e7b62791072","size":70114408,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.5-1.deb_amd64.deb"},{"package":"mdatp","version":"101.23062.0010","architecture":"amd64","section":"devel","priority":"optional","installed_size":386184,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"55b7f08fa4748037e5f67c6ca844e289da69212b1c52b7e7de6ae9553a583069","size":133718266,"filename":"pool/main/m/mdatp/mdatp_101.23062.0010.amd64.deb"},{"package":"azcmagent","version":"1.33.02399.1041","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0306d2c2afa192ef8a6ed1d99aa34a59af54f88b20cf4bf9005316bcba9919ef","size":54719874,"filename":"pool/main/a/azcmagent/azcmagent_1.33.02399.1041_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11742,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"75232addc8ebe5da0ac7bbbf605f012da77390de8db6be5627c0c1d8fee7a858","size":1313808,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.9-x64.deb"},{"package":"msopenjdk-11","version":"11.0.11+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316734,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"57aa36a8dbde09c855491a13efcaf08cce3e3c4737f30683ed123e3b4f7896a0","size":193400792,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.11+9-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"e4f1574f7e6c0190741e4fad61ab8bcdf3576560688849c02f5b6a6e2600e855","size":2119388,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.6-x64.deb"},{"package":"moby-compose","version":"2.12.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"771e7aeb4360c19c59d8e341fa49388ca5f7368745a3ad70b48ed20554d83ca8","size":9661604,"filename":"pool/main/m/moby-compose/moby-compose_2.12.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":122255,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34b182d515b35049e97abe846e4e637fefbcd10198dcfdb12c342df7cd300dd3","size":33313338,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.4_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.22)"],"sha256":"4ff02ca997b12cdd067c268f9e173a5fb0383f7cb804b5458f460ff320b39cd3","size":5772820,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.22-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3284-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d09699e241214dd8462b0d0e1a52f6995d7c1d3fffb72926517a1a7d2d495631","size":208712656,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3284-1.deb"},{"package":"msodbcsql17","version":"17.10.4.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"31e2c8d37b011aa51d902bf14f5f7919e69fbe52ed350fa3a2e9b1e6c8fbaa29","size":744572,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.4.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350056,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.107","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"fc203dd1fe23030645b49fa957ca63bc80f3f14dd14c12a07be5ed5d08fe0e20","size":90663186,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.107-x64.deb"},{"package":"moby-containerd","version":"1.3.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126906,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a7462ad88c12cc2ec12a42cae20a13ed377751c459bd24864cd3bb2d9725a0b6","size":27655928,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.10+azure-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a4bb8a4d80a2c8bd3faac36527a945ff000ae68a31936645a711fa9081c3059a","size":1885604,"filename":"pool/main/o/omi/omi-1.6.12-1.ssl_110.ulinux.x64.deb"},{"package":"dotnet-host","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b478f09525bbacaa261ff0edb3e0faefc648861cd5cf1e582849cf2723a086c3","size":57230,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.13-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.16)","libc6"],"sha256":"92171aaffa0102e35a70d9d06d05bf47af94febe99aff6cb09c45f864289f64e","size":142298,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.16-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4426-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9367c0d31cdf86346a5404031e7e6641f43e2940ef39c4e40e358662f7c9e891","size":135350632,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4426-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"35da4e0bf4c9964644f931cf81c3bd6bdfa3dc1b2a1ccc4893cc3263ecb373b2","size":124424256,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4653-1.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"43d23398197e62254878b0dbebfb4192d6edcb529c898735fd127ee8bc2aba13","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.6-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"915a04a17975831a96837f44f068716a250b9cbe7c2911ac646c779825c2b3af","size":3519794,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.4-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"6fe87e736d18910d0fd815aa15aa0ca8c8d0c7fa260106a8d528d1cba940840c","size":2568046,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.7-x64.deb"},{"package":"mdatp","version":"101.65.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":209057,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5455c6d16c5a5aeceb81a3f17a3bc7b81cd0bdb0d2f1d70a3014c9ee3ad58b59","size":61280098,"filename":"pool/main/m/mdatp/mdatp_101.65.77.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"6270ce975a105d44cb78f6c9b9c1815027262173d03a8697f307b56fb250fc57","size":415558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020250002_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e77af1b8d2d5d5973cd7e633cb4be7c7ad4b994d59bddb890dba5c36c02aaf55","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319790,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.200","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.2)","dotnet-apphost-pack-6.0 (>= 6.0.2)","dotnet-runtime-6.0 (>= 6.0.2)","aspnetcore-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"1025e3b198f62a3624e66ea5b3c3e693ddb53ebedf8a74e56dd221f180bba9bd","size":80440736,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.200-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350086,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.111","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"420c6cbef880bde26abc7174ee4e182b764f04f02803425e340dcafdb1f6790f","size":90702250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.111-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"73608bb57c2aa9ef501d872841e7496c78bd2a8dda1b57a0271007e3106a0a96","size":135279404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4483-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"760dac7d7083b3f28b2fccaa7dfc529c6b71df58e70239c186da94b16d0f7d82","size":2130012,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":311307,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.116","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"70b59d15f436ace27bb104305b9986d4e9bfea432730e2c5d3d287cac1600f9a","size":78307442,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.116-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b2e8605baa0ace12a5a635924875fffedc8e73688d592758212e9fc6c3e23cdd","size":228284784,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4868-1.deb"},{"package":"blobfuse2","version":"2.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":31581,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1a0543ab79bb13a82781e025c48327af3dfa11c6df34ef4a86d08b8d137ce160","size":15604716,"filename":"pool/main/b/blobfuse2/blobfuse2-2.1.0.x86_64.deb"},{"package":"moby-containerd","version":"1.6.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"cd3059a1607539a0677546b39f4e57ab5287c36434e35e122dac8f0a108428d6","size":31522474,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbbfcba94cbb3b29315d952cf4f29a7012b6f46d12324aed88f56c9db039901b","size":52476,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.32","homepage":"https://github.com/dotnet/core","sha256":"92621393c0a814a263f3215121e9a9c722095c125f1f24939a43a56265ff706d","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.6.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25932,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"526974e4a68abb33b24b36b99fa42a886ea332f1c2581f71dca0b998f35581b1","size":6564228,"filename":"pool/main/m/moby-compose/moby-compose_2.6.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87d355268b192b05afe470e50bd08a6d88145a53b4ae60dbaa21c677f2eedc01","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.14-x64.deb"},{"package":"libk4abt1.1-dev","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":63,"maintainer":"Microsoft","description":"Headers and cmake files needed for Azure Kinect Body Tracking Development","depends":["libk4abt1.1 (= 1.1.2)"],"pre_depends":["libk4a1.4-dev (>= 1.4.1)"],"sha256":"e04028542d35fcd7d3db2343227afc8e44f3bdc856dbe39eda0f14c31841d55b","size":11314,"filename":"pool/main/libk/libk4abt1.1-dev/libk4abt1.1-dev_1.1.2_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.31)"],"sha256":"90c26a2bd56961ae41a6efcaabb3a0531cddb8f9d160d9a490c1c4863e4a6e9d","size":5772724,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.31-x64.deb"},{"package":"azcmagent","version":"1.12.21299.035","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"1d51a95cea00deeba08e8e375e35cc825473c370dc8190bfa00dd8c6bb8b1c5b","size":49869060,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21299.035_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.3)","libc6"],"sha256":"8985e06ed129ed00a442ecb28947c0f09782607633808fb2389c5f87f7bbf04a","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.3-x64.deb"},{"package":"deliveryoptimization-agent","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"2418758faf92cb4bf8879b592100213d6f2943c38e0713080ca1937145df2c4c","size":162138,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_0.6.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.12 Microsoft.NETCore.App 3.1.12","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.12)","dotnet-runtime-deps-3.1 (>= 3.1.12)"],"sha256":"9bfb94481c3dcb25abbffdb6d6a62d6519e5e27b285df328f754ac5a857cba07","size":21905222,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.114","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"d87754f9c437e4381313f3038ad558108e90bf1bdb3ea853701d085f2b64a51e","size":43875266,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.114-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.615-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237152,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.615","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"efbe8596983b759748d90f8700ab6b5d336beeb78bf8f9b0bef4952815fc650a","size":90796912,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.615-x64.deb"},{"package":"moby-runc","version":"1.1.9-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13373,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"provides":"runc","replaces":["runc"],"sha256":"9f6f3d00f1615b8859b1295852d27de3ec1cdfc78a9dad5b0911120c9ca11145","size":6707904,"filename":"pool/main/m/moby-runc/moby-runc_1.1.9-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d8c45cb378057394ad53edddb0a970025ca261743fa4621687c927ff5a445edd","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.73.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":274981,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5759eeb478f8225529149dd0891eb9f14d8ba47e8995590890d4de15964649c4","size":110911854,"filename":"pool/main/m/mdatp/mdatp_101.73.77.amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"recommends":["dmidecode"],"sha256":"4a101dc3b973bf0346fb74e616eb8b0bd0f152e56ce9719044797161c87105bf","size":522226,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.6.2.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":85899,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5a3722c7d132a27f557a004f4e40f96b417a5eaca4ff370f60ba44893e9888da","size":20423424,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2ce36274b152224ea6864bba49bf799c495f71fdc72c940cc76b143e5c2ed48c","size":9775330,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"blobfuse","version":"1.3.8","architecture":"amd64","section":"devel","priority":"optional","installed_size":33217,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.8 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"ecf0fa02ce55d860413a66de453e7c6b795379e7fb5c0ec2b38f4ac49bc70a5d","size":9492388,"filename":"pool/main/b/blobfuse/blobfuse-1.3.8-ubuntu-20.04-x86_64.deb"},{"package":"libiothsm-std","version":"1.1.13-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"e96bda6606c62fc82f3e479e3fd5b122a2ba55f9c8f10d795fe80ae8472a4ef7","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.13-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312610,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.105","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"633cc12c08795b939f67990b8677cbd693cede30ae09bbbd6bfed6e7397070db","size":78307244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.105-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.8","homepage":"https://github.com/dotnet/core","sha256":"4c6e03f5f8eca555a2020828204c7fedfee30fe0a4f22b02c1f251b5929aa05f","size":3399676,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.8-x64.deb"},{"package":"moby-cli","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70473,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6fe21617935a2cba4192e620a560ed7c320c9a83bcf09e1e3693083e13f56bf1","size":12149140,"filename":"pool/main/m/moby-cli/moby-cli_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.315-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331510,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.315","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"042fddd433534b98b33305082873f849468056d4a226d1d1addf226c19a95b82","size":85195842,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.315-x64.deb"},{"package":"msopenjdk-17","version":"17.0.1+12-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323380,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"36a5d50656f0bcfc4aeca6a388c924e88d47a994afa12470e24468f30b0cf90f","size":191722368,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.1+12-LTS-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189502,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"65956ec977a78d78aa4bd9bb4378fc0b4c3936c31f1da92c132211a86cc61630","size":48157850,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.401-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.319-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.319","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"385918a9f7fcb909bcab0f0a13ed6db6edfcb35a41f9123105495331ec28bee4","size":85294962,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.319-1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.2.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge"],"sha256":"ff240391cb2b7a0aec117e660262566509c71509b453620154aa98782c9a5ae8","size":236224,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge.deb"},{"package":"aziot-identity-service","version":"1.2.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17916,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"d857ac4eef5166fc531266c2e25d8c0f7b170819bb458f6853d63ede5cb22dc9","size":3805296,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.5-1_amd64.deb"},{"package":"msodbcsql17","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"f5562b6bc8f682f0f341d13700ae0d448276847c5de097fbb9d4c74943f1076f","size":743398,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.1.1-1_amd64.deb"},{"package":"moby-compose","version":"2.1.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"950ef8246e468ec4910f7dce964cdd19c350a754aa5317eda07bda99fa39e5f5","size":6293952,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-2_amd64.deb"},{"package":"azcmagent","version":"1.13.21320.014","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"5a6e6160af4077a337699916ebf1d45cf37025650f33dd910f0459d24af2acfa","size":49774358,"filename":"pool/main/a/azcmagent/azcmagent_1.13.21320.014_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18524,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.0)"],"sha256":"53f1e28fcd0f39d4b3aec9d7cd494e9003cdb6577017e4c45b7a837320a5adcc","size":6073980,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.0-x64.deb"},{"package":"moby-containerd","version":"1.5.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":124211,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"dac49f1dfa10cc76295d563ac4fdb6790c561a8952832cd9a4778a8f2953e583","size":27576204,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.9+azure-3_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.7)","odbcinst1debian2 (= 2.3.7)","libltdl3-dev"],"sha256":"dc575321dac251eaac96ebfa024cbb2605cec279a4baae176529be97ae61fe4e","size":37052,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.7_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.4.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323717,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"23df3c1a4b3bd9218632b828765cdecc49e2143f4969496df164dad9521c060f","size":191756484,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.17","homepage":"https://github.com/dotnet/core","sha256":"a417f24d032b7dc9111a61d71df2dd1232cb5c78b6e82380a515534aafa20181","size":3429892,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.17-x64.deb"},{"package":"powershell-lts","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"75a1204f0853c30057405dca9f725fb28d2a6114c217b501c3a541d1eaf5ed92","size":68396144,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.10 Microsoft.NETCore.App 3.1.10","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.10)","dotnet-runtime-deps-3.1 (>= 3.1.10)"],"sha256":"8998f609a34cef36b14e6c4aa6d85e25f99f70c88ef78f2586f45fda3c564c2e","size":21832770,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a86f12817d94c2ec721af3537e3ef92a4371d81bf96232dbd99543b1f0648988","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.2-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324571,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6d5a05b672e69cf7be78aead401c16068734af4d9002498ab6514bffe40490f7","size":164951794,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"ad64fd258860d079afd1c1784867be30625a31cbe09438a1102791ca085fea79","size":1306464,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.3.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":404208,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.400","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"4e1bc6ef9e5e0ec0a04ddee9c971b97087e6a9a0321ced9b4a872f2bcaac5270","size":108340086,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.400-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.9-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4510,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"1f02fb4b8e31154f9f44850af306a922994f18c8a5365f878da27bcbb8ddc98f","size":473350,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.9-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.120","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"2b0127f7334f7b4d29f4fd582d7a376cd3df021652eb5a8c2791cb60b45c66ca","size":78857458,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.120-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.32)"],"sha256":"b30812c75afd7ecf71f1c7369a474d066e00a208b4f6ed41f09c8722e82ec446","size":5772914,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50205,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cdb161b6e83ce7d0369120d876b1fbe92034944681d862ded2292bb971bfc1ac","size":9779402,"filename":"pool/main/m/moby-cli/moby-cli_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-buildx","version":"0.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66611,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"7237fe48a538cd9f08f5482c5f3e1a3afc0c1ee6dd302bea3f3b06e7c9ab5fdc","size":23640920,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.3.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172243,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bc7806942a6f28060686621bd922df555e61e11b00d5205896baba251ffa5b1f","size":69177584,"filename":"pool/main/p/powershell/powershell_7.3.7-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-3","architecture":"amd64","section":"java","priority":"optional","installed_size":318628,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"03dea1e256a822651b96db15d5ccaa92d74f70e118d670dba0f3249a156cb92e","size":167149714,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-3_amd64.deb"},{"package":"dotnet-host","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6b76d623e1e8a5867b635c656867f9b6df17f8b5dfa1c37f66265cd5d27f526c","size":36544,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175210,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"2dcf56dedacb98bc1f661a8c35fd818c14b348ab5ea6f2d984f3d480806e44b3","size":42839214,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.104-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.101","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.1)","dotnet-apphost-pack-6.0 (>= 6.0.1)","dotnet-runtime-6.0 (>= 6.0.1)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"12cef00f2632158eb8abb3134a76f3f03b644099c98f1e2ad947a89991a48582","size":78065748,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.101-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b71bb09108f7f90c47f7aa12647eb4b294adc990880eb2d87e7c7451af205b76","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.9-x64.deb"},{"package":"aztfy","version":"0.7.0","architecture":"amd64","section":"default","priority":"extra","installed_size":40620,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"23c48caeff05fb75c9486bf0685620a773ec46ec9d6263ee28670f19bd09571e","size":8353910,"filename":"pool/main/a/aztfy/aztfy-0.7.0-1-amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70836,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.8)","dotnet-hostfxr-7.0 (>= 7.0.8)"],"sha256":"ce1576434204df98a773ce62ea757b06997a110fea7d50720c6b39a5c0476337","size":23202254,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.8-x64.deb"},{"package":"blobfuse","version":"1.4.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":34742,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b4312aa8d8765031712e012b8ce36e87b66cb1295e276801fd69c47c85c2f877","size":10094342,"filename":"pool/main/b/blobfuse/blobfuse-1.4.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.6","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.6)","dotnet-runtime-deps-6.0 (>= 6.0.6)"],"sha256":"568ac6b27881ced8198b39bdf885bc864d07fe5d629356ca135cee3d4570f983","size":22760148,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.6-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"21aeb934942572b999ebe59d74ad66f42ed592ae2e81018913968c84a13cd557","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.12-x64.deb"},{"package":"moby-buildx","version":"0.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68426,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"20c7e33d3598ae3dcd0cd0bc127e554fefd1f1fd792bde4b0b29b214a1135017","size":25559006,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.2~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"a810af35585da4c42b563a185c8865f73aa517965d9dbb987a33c94c15fd6a1d","size":1648772,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.2_public_preview_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.27 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.27)","libc6"],"sha256":"701e89dbf39e921a5118d3fc3fe168c913bfc509006ee81db507dc5765f0dbb1","size":120786,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.27-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"1689060a6209de074a7ba1ca61658d7e7fecdd4ecd8afe241a1085ad1d2fb56e","size":3510004,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189613,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"0901442238c2d98efa877e9e707b593b2b38fc553ff2aa0d6f0ac8fd6450029f","size":47898062,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.407-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313389,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.110","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"675b0ac1cde55eaa4e5b917c32c32678076614f15a28d7854dcdc2f52a8ce652","size":78476464,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.110-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"da99f73d57adcfc0ff5cfa713f52f6dbe3d6198f6a996e481ddd1da183f77221","size":157183124,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5348-1.deb"},{"package":"powershell","version":"7.3.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196907,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a99e9fe370b0d9c05c736fa81521d32375ddb418ab75c76d9d0a14b4ce3d3df2","size":71728570,"filename":"pool/main/p/powershell/powershell_7.3.0-1.deb_amd64.deb"},{"package":"mystikos","version":"0.7.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"370fa35bb30e9919d98c900077cda8a212457ff740888d990e92793e1a2697f4","size":4280430,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.7.0-x86_64.deb"},{"package":"azureauth","version":"0.8.4-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":75617,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"79bd0a12a3bad516c7511db2f08232f7313501ace0785f85ce2ac6b385d2244e","size":24635978,"filename":"pool/main/a/azureauth/azureauth_0.8.4-1_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d038485c6f83ac8259778162feda60f6d9a3347b5292320db645daccdd375731","size":20686374,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u3_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":9056,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"1cba16e3b307177cbe15bd3fd8a2a87ab8d638846988202be8a17981b5e900c9","size":2747798,"filename":"pool/main/s/scx/scx-1.6.8-1.universal.x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2723,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"9d775e854e8f618f437e1c5124ef753a7687852eab28430f7f668e27ad87245c","size":681884,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.21)","libc6"],"sha256":"310e219c7383a2a6b98e541ea0458296c6eb4fcbfb80d9d9ac9d5a1f27d0c437","size":142420,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.21-1_amd64.deb"},{"package":"mssql-zulu-jre-11","version":"11.43.56-1","architecture":"amd64","section":"java","priority":"optional","installed_size":116708,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"dbc40163338219bedb88ada68302d9b89f0896251ef5e8f853a72abe86a1a4e6","size":40354792,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre-11_11.43.56-1_amd64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"69a1f6ffb194e386d3282c0d40847cdbc4a482a644c5289aae1f55f3d6d81ca1","size":10877658,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.118","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"8a7c3ffef5add57f593f7d903c514c118c45802f4590aaf2a39f7caf082e2eb8","size":44333922,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.118-x64.deb"},{"package":"sysmonforlinux","version":"1.0.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1)"],"sha256":"aaa94351e6626aa059e19c950c98bb078981268f0f77224eed46ef0d7b0773ea","size":225748,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.0-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13091,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.0)"],"sha256":"722f7d8e829269206ad71047ae84a13a9061a5d53f3e22fdfdc447eec19016d5","size":1526164,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.0-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.10","homepage":"https://github.com/dotnet/core","sha256":"f64503f74d2f6318966bfba4d124cf7ca087d3dafd56de5e9d72a5b575ce93c9","size":42400,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.10-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3233-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a161bdc4fc21f41312d5661573d4b6d055c3d8d9c3efdf0188b1240d9ba63f55","size":208751136,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3233-1.deb"},{"package":"libdeliveryoptimization","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1513,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"31e14621381b9f382fa30382bdcec3102f231b653fddc6426c995338eeb4c896","size":156484,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_0.6.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.12 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.12)","libc6"],"sha256":"caf03000692ae0e1e3255e34a6ba9d926642f65a618badbaab7e89b2c2b43dd7","size":121046,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.12-x64.deb"},{"package":"dotnet-host","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7e55da6f87aa87547fe6feb6bdae72ee2359d2db46ee35b86e58209fd951116","size":55976,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.12-x64.deb"},{"package":"azureauth","version":"0.8.2-4","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"6c67ce3cf97d82f6e014377d4a49426b10d0e725cadba7d868639ebec42d481a","size":24118762,"filename":"pool/main/a/azureauth/azureauth_0.8.2-4_amd64.deb"},{"package":"kevlar-repokey-dev","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-prod","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-prod","kevlar-repokey-test"],"sha256":"609c344c64cebccbca2a92d43b4284e5eafa3eb2135392e53f5b483e5179c7c7","size":2494,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-dev_1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3734-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3a0353ce615bd205a150e3bae61a3f8a851355f650d262cbbda6209a6ef35a95","size":209935436,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3734-1.deb"},{"package":"azcmagent","version":"0.11.20231.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"3cd72bd47a787bf6d4075d4ae541f48e93881e76a0851942fcf6ae51862ac61a","size":33039918,"filename":"pool/main/a/azcmagent/azcmagent_0.11.20231.010_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4aecf95e06f1d933e3c502fc7825af8dbad329c9fd5289bbdc8c3091a964f90c","size":2690,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.23-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6a1ddab72b597a0d7224031b5e29b74c38fb11cc57108f6decb5de0d71ff53a1","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1642.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","lttng-tools","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"4ba4bbfd1787ff0c8e0f611b01778fea768efe59b9d280c7d0ed51e39e0b54ac","size":219899262,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1642.1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68312,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.0 Microsoft.NETCore.App 5.0.0","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.0)","dotnet-hostfxr-5.0 (>= 5.0.0)"],"sha256":"bee07a7b6e16a0a65cc6bfc6c26ecec403aebf22cc02379d8e9d88b00b9662d3","size":21522046,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.0-x64.deb"},{"package":"mdatp","version":"101.23082.0006","architecture":"amd64","section":"devel","priority":"optional","installed_size":411033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"e80cb3c420998be4370f6da7724a335bf7a233fe9fe09fd85b15f10e6a9ed519","size":150359494,"filename":"pool/main/m/mdatp/mdatp_101.23082.0006_amd64.deb"},{"package":"servicefabricsdkcommon","version":"1.4.2","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric SDK Common","depends":["servicefabric (>= 9.0.1035.1)"],"sha256":"547885035e4b4811ed5bb2868869cb8eea6d64c5922a6779a0f4890bc423c61e","size":16460,"filename":"pool/main/s/servicefabricsdkcommon/servicefabric_sdkcommon_1.4.2.deb"},{"package":"open-enclave-hostverify","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"990276df2b07966cfe0808e7ad801a6d453774cec1fd5a2df4e4bc7452527911","size":854534,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8e8c6cc973ec8b33ebc1998ab7a3899edefd8292a91cf644a4da89117951f09f","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.19-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.421-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192852,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.421","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.27)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.27)","aspnetcore-runtime-3.1 (>= 3.1.27)"],"sha256":"7025fd412711f46edf16bacb0093011fb4c2ebcbefbce2a2e624a1ce63ed3c0b","size":49770728,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.421-x64.deb"},{"package":"procdump","version":"1.5-16239","architecture":"amd64","section":"devel","priority":"optional","installed_size":10616,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f38e3b29309d220c4c57729c3ec9ddad737d1d38c56387e971e55c6440b67f53","size":1625738,"filename":"pool/main/p/procdump/procdump_1.5-16239_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89518,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0accbbc7086ad733257ccf991a181302d7e7243b99aa663f856424ff56885461","size":82560948,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"730c784e1cb207ac9dd2055e7beb46d669395c64acdb1c0cf0587123189d51c8","size":158749964,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4895-1.deb"},{"package":"scx","source":"scx","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"da87ad658af6fd2be3e23de235f8a037e04f62fca9facf4890dbe3a8c8f211ec","size":2588282,"filename":"pool/main/s/scx/scx-1.6.12-1.universal.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330672,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.301","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"bbebeb9d409cc8531efee42c19ef31cfacb4163b1e0c9c11ecf9f64def2e9d7a","size":84510338,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.301-x64.deb"},{"package":"dotnet-host","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"35fe3c54c617ca32833454137accc1b1b5200f0525eafffe5575af9eac22ac06","size":32904,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.11-x64.deb"},{"package":"azcmagent","version":"1.27.02238.691","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0d3dba479960e05eb81a9adebab11eb5cf61f8e5c3b499db8e3b9d482a5c670b","size":53707946,"filename":"pool/main/a/azcmagent/azcmagent_1.27.02238.691_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"692c946fe2e041723b9ec97a77b6ce6c81c2a04cbaeb7c97625af9bef7c80235","size":2388,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020320001_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"56c6333632b1a4a16d5bd3dcdb6a7e9326a5fca99c06b466a18f46e2e9ea574c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.17.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52651,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"651e08385f1d09502042123169438defa3c6c0bdaffb6b9cb6a324e6e25230ba","size":10854258,"filename":"pool/main/m/moby-compose/moby-compose_2.17.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"7b71596ff75999d5eac2af059d597b48c370df332c2bebd4e813767ac68afac0","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.0-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.30 Microsoft.NETCore.App 3.1.30","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.30)","dotnet-runtime-deps-3.1 (>= 3.1.30)"],"sha256":"748af674ef3158330159ad766e13fe2e50df9f864053831ede774f22be9b5b8e","size":21656458,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.30-x64.deb"},{"package":"dotnet-host","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b1d34d47a7db8898824408b0cb2c83f2e17647a7ad2df8fd74df7bd7fbe8e646","size":32930,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.8-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18556,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.4)"],"sha256":"5d1c630d1847717c950f9c79d5bbf7d90de4e800b8999f679082e5dad9d8038b","size":6086556,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.4-x64.deb"},{"package":"servicefabric","version":"9.1.1388.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"b83b57255cb013301f0e4798e7e3dff853cb34f5b0ac61c29b4fdbdeed118a71","size":219279812,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1388.1.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21340,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.5)"],"sha256":"fb030c9ded8cf60148ce5fc0f70958a865fc3691eb64226213ec36079e77e319","size":7053294,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.5-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":66359,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ebf6160dbc40d51ea19d6b0a9ed941e809b3424f45452c644b761000e97c5319","size":22808628,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-2_amd64.deb"},{"package":"open-enclave","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":122315,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"77f2429e1d616d9403fc51ac662958f18a244c93ff4a1a24baeb965060bf4bb9","size":33343372,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.5_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120082,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c36cef2558aad2d83c60a22f700db49fce9d4637564665dd45d2c45c198c988d","size":26953884,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.5+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"957c2861468f1e1391ad3de2f030653600a07b1bec8f1e5dd06e4af2b7a2848d","size":5745714,"filename":"pool/main/m/moby-runc/moby-runc_1.1.5+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"9d5454c1cdc84def5bdbe93f3388c7183e81e53560114aaa220cf7a14bcb995b","size":2130310,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.20-x64.deb"},{"package":"dotnet-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":28828,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"4e02a0426e93fe860fe4a3f4496da2328fc7a827e66bdab3f84f0d1d859b2e8a","size":2086486,"filename":"pool/main/d/dotnet-targeting-pack-5.0/dotnet-targeting-pack-5.0.0-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.515-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228795,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.515","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3e21d2673d8ce6b4a4078091bc8c26051f2cfc6b9e49dd7758076d7facaef06c","size":89292452,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.515-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.1","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"e1d2d1f009afa3d6da5771c4888dc9a249944c1d331efded61486ffdde1b3d93","size":79756342,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.1_amd64.deb"},{"package":"powershell","version":"7.1.0-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174304,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"09ac03bdcd7c74a36807beca62eb4ccfca690be1dc3936ed08a7b8f14fe0cff9","size":68242798,"filename":"pool/main/p/powershell/powershell_7.1.0-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"446dac739f22121c02204f78199734069801f71568387b3435ad373987370ef5","size":59115640,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.408-x64.deb"},{"package":"powershell-lts","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"d7f432866b4da70a8e0ed7e2221c165406f2e04f2c691e69960ccf85aa53ba93","size":69388194,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.5-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.12+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317079,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"a54d8a5bd2786a883b9343909ca99dd7a7f22b26d24b52fbc5cb123d01a6ce96","size":193554082,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.12+7-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.7 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.7)","libc6"],"sha256":"3f8dfa80dbdac5db78ede515af8dd60d39f6492b96b122ce8a0ff0b118e5ecc9","size":140236,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.7-x64.deb"},{"package":"moby-engine","version":"20.10.15+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"dc6f35674c5ec41af4a03ce023e3b5b8e33f1322157fc78d33349820d1fc8b21","size":20926260,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.813-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240919,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.813","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"bff9e10d3dc9c4c99e5aa234fd2c6b187dec616be823d22ded8165f9680f43d5","size":91632412,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.813-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b6bfa17bec9d4b4ac9813d4eb615239966c224d7db7019550c07fd5bf22abc73","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.14-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.25 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.25)","libc6"],"sha256":"e5e623e0673d0cbc3fdd49dfc2e50babafb3b06a33b4365c3b3e9d97553d7ca2","size":120760,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.25-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189455,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"c17e3c941a3ea084d7eb47af90856eebe858de6a41ebd42e96fef21be3531573","size":47879916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.406-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"48a9d825c07a0f1c138ba6a60050c6719925d44b23cd0e32ed34efda554ebd01","size":152285536,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2628-1.deb"},{"package":"moby-runc","version":"1.0.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15169,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"1ec023e3176b21673b5d38f1cac01ab03ad5d245aee354cdef593a1c82092f4e","size":5339204,"filename":"pool/main/m/moby-runc/moby-runc_1.0.3+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17438,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.5)"],"sha256":"e5762c7d694afeafbfa292c97db318306e26fb20a68252e07934511ab53d6d4e","size":5760232,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213479,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.102","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.2)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.2)"],"sha256":"9a82f517d20c03e91eef89b195dc1cc52bae32a1bd4cb01a3db6bfd51ff9bce7","size":55237992,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.102-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"6240db10ea11860356bb455e0895d9862b7678d19737af4de7554eb83d333bb6","size":1000112,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.14 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.14)","libc6"],"sha256":"b1c1bfd55d24df9257d564346e385acc3bbc562899413c3712552ed9efe70bf1","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.14-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.3)"],"sha256":"2252e98ccca6ed8790f8007dd8118f8999d6b4ca7be41ca3bf46fc0f8fd66f22","size":1518038,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.7)","libc6"],"sha256":"fb83c49522ac9748ae6befed061b663011abed5cb031e15d22215771d30b170c","size":143966,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.7-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124805,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"07580974546b886fe611343f06359f58b43e3e3e0fc650ea839554ef7f76a955","size":46699494,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.4-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21363,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.10)"],"sha256":"4669c57ac123ea1f3d772bec04fb2468527d68d6783809ba4b6e7a137e9ba94e","size":7062470,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"dotnet-host","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.3","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c86af078631884cb8aecb055ad37570c49a2de66672df4f4ae9ff574eca4331c","size":57350,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.3-x64.deb"},{"package":"aziot-edge","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"0700e703b2373ed90c158783af14129f06c273d147401c5e2c8c752dc66c1f85","size":4204432,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.2-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.9-5","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"1f19bcbe826ba50f0796936df7e8caabc708a3fa075ce3558363a1f4672439fb","size":12514,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-5_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.5 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.5)","libc6"],"sha256":"c1d7056b143df44b476ede6a69671e4c09b352c6f984264f61a9518a01957a85","size":121024,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.5-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.6)","libc6"],"sha256":"7f249c085c34dd797a6aad06509714992d2f48a8452798623ead69194429454f","size":141988,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.6-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175188,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.105","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"03c9b1da04c9e0c2f8f362873bd56a357879a93192882d13ad1f89b449ddda83","size":43698950,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.105-x64.deb"},{"package":"libdeliveryoptimization","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1514,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"b70bfa739e450fb29a108e9790bcf98c1d001495175dcd52b4e8c39382394b96","size":156992,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.1.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e5b7ce564750f50a1aa6a99a4a5af8ec44e8aca36ed7babcc694282c47b7f7f2","size":36488,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.28-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.27","homepage":"https://github.com/dotnet/core","sha256":"9aff677e4984e24412ef2d41c7ee1bb5853d5a676724642090419f618ae32612","size":41966,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.27-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.4)","libc6"],"sha256":"868d65aea8e5f2dc487d5f3bc1f6611778a5193483f10f401bb3353dc82d9ce6","size":144018,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.4-x64.deb"},{"package":"mde-netfilter","version":"100.69.52","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"6e00f07a56be4097b9ff86ab3257017811d1b6f6bf121b69b53a8d6c06042c36","size":24430,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.52.amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"176e5dcfe41ae8e829b78799b22f2249c3f11aeffa831643c8e4c089e533366c","size":2124774,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.5-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"21cca571060049374d892dae2996cf33064b441631a5f0384aa917da4a518a7e","size":838580,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.13 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.13)","libc6"],"sha256":"3cc503e7a916ef558185f59e36ff57a855421e1684c291357d125cd26e9a9d32","size":121130,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.13-x64.deb"},{"package":"sysinternalsebpf","version":"1.2.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"b0c82c448966603c0e472e7227b51d8c02876cb2f62f5e6d501cb6dd50d02fb8","size":715290,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.2.0_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19862,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.9)"],"sha256":"14e18640740f852138cc60bd0f5c34d9d136f225b7a249e682ece80e9f2d83bb","size":6608408,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.9-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350037,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.103","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"a510a1e1ece4d989d4afe7c89015ba3771e42277139c0b84d919bf58659178f8","size":90608242,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.103-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.4 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.4)","libc6"],"sha256":"49d45fb8f2e68e35064744b9c21633a5aa87e7f451054936867b7716ecda0750","size":140852,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"586b47ef09438c1b2cd2b493d4947d861756b44d0183d0f4396c38f98df4b6a9","size":2794,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.13)","libc6"],"sha256":"532d2fa2dc9c1b2076010d25fcd7a89fa3a37a8134f8530c58894438aa751d8a","size":143994,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.13-1_amd64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"850b005a6cff5e198e0dbceb4a06793ad9777d97a1ba8aaff6647abc1d23787c","size":9652638,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"procdump","version":"2.1-17009","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"13f33965391c2baad2dcf171aa1ff79bd0f7c6e7c0a541bd18ea6d2ae73b488f","size":1649046,"filename":"pool/main/p/procdump/procdump_2.1-17009_amd64.deb"},{"package":"moby-containerd","version":"1.6.19+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1f9e70df328d8cf6ddddc456035eaa23c6bdd22fff61846b67c1079b98afc4a2","size":31449582,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.19+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86242,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"170524326ebefe90fb0cf12222d1887bfa0920c219ac15971e211c01d8ed9780","size":20510486,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88c81dd2fb63b2f5b9161b03e3db1f8b1569d3e5e7f419a958dc4a4dbf05461f","size":58314262,"filename":"pool/main/p/powershell/powershell_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"az-dcap-client","version":"1.12.1","architecture":"amd64","section":"unknown","priority":"optional","installed_size":949,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"31cdd52119bf90c8e93bfb420a48b07d7153b1109d62004451d78e96a646cb85","size":161772,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.1_amd64.deb"},{"package":"moby-buildx","version":"0.10.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"442ee6a05061d6d597fe04da223f68a3a0ecbdd03cefc293e7d8dae6293a3a76","size":25954582,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.2","architecture":"amd64","section":"default","priority":"extra","installed_size":16078,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"0df8998cc932b73a6ab74b9849a399e23d333772f47d1cd4d83a41e986202a20","size":4117900,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.2_amd64.deb"},{"package":"mde-netfilter","version":"100.69.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"1a6ca836ac97681f0fcec4088fa942783ec22b6e5d58be5a4adcc867301c8968","size":24434,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.55.amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"82d9ce5ab6130a8cf34ea3f04b636fa3b634ed9f1b518dcb4f34ef8a60e92b22","size":485622,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"83a0ae16d28a9c8822a7df6ad9d9b2f0e8a03a6b27f25487d3a341bfa4b0d1a9","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.28-ubuntu.14.04-x64.deb"},{"package":"azapi2azurerm","version":"1.8.0","architecture":"amd64","section":"default","priority":"optional","installed_size":70084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"f25bdb7d081fc4f4adcd6621926f8cddffc9a2248c30b46e6cd568469828eecc","size":9666182,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.8.0-1-amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"eda276458ea8423b699448a0009d7474ad47a0cc93886df47dd5d88780a4fcab","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022300001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189450,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"feea21e813e5f579221f266b87e6f55b3a49b35dd7dddcf1a54216d4f2a6921c","size":48035314,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.405-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0566fd72c633ba531b52f13b777579f056bffceb889bbf667a7b58278da3ed76","size":227697024,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4727-1.deb"},{"package":"moby-compose","version":"2.15.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"c0747669c5cf76ca6c8d31d73f726666d9a167d09bca61d25b96b858d5e5efc2","size":9668570,"filename":"pool/main/m/moby-compose/moby-compose_2.15.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71099,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.26 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.26)"],"sha256":"d58bbf6fa31169bc9e7965f75e6d1b403d13d2a0a564b2b9773b5d8e95aaa18f","size":21943940,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.26-x64.deb"},{"package":"azcmagent","version":"1.14.21351.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"929e5bbce54aaa08d2e9ea8026ec473827a0130b585fb9433250793e247c36c8","size":50495490,"filename":"pool/main/a/azcmagent/azcmagent_1.14.21351.009_amd64.deb"},{"package":"libdeliveryoptimization","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1501,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"af3ed5ab44fee987e86154358576b01369a18467c5361916d81b0704f90a3dd4","size":156634,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.0.0_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"42645637bdc5e5cbf71b83bc6f5ab80fbc0c8d1ff8b293060c106ca064b7f6d7","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.10-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.5.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89256,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2438b186365c527f546c59e0e3a5c660c431739a12026ad89c2e0acad56ce443","size":82330362,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.5.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3ec86621b0f80d91ba828774a3f0200046ee14b27046afc64f71d7719fc22e42","size":124473264,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4704-1.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367122,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.307","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"0dd6e99a413ea41be9ecb5d1815c41f19850d198911ef9d555f0fcd54e4cb7fe","size":96591194,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.307-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3442-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6f4924c5a51a13f2a01ca9f57ec4b8e42f2625f11b9959277b353d58fc031e57","size":209376948,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3442-1.deb"},{"package":"azcmagent","version":"1.25.02203.601","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"633d248a735db74f851d802144622a5cba9888a8c9741fdab3d72d0ace467940","size":53677954,"filename":"pool/main/a/azcmagent/azcmagent_1.25.02203.601_amd64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124219,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a97ea99ba9cf7972a17ef85142fdcabe17b065b66e2c62b778bcf1a5c05942bf","size":27591168,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-1_amd64.deb"},{"package":"mdatp","version":"101.85.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":294233,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"6b594c091b2e04b72c82656b7dfc54f908268b9ceacd0adaf96bac3dc7f171b6","size":117375540,"filename":"pool/main/m/mdatp/mdatp_101.85.27.amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b5c0552f571530933268426827b82de3c5a7e2c5d7a6cb1ddddada110a1a2cb7","size":166011704,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2936-1.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"1416466bb4b4c601800a49b5c6964425787f8a7952a26d8ed3d480c563904e85","size":25957390,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u1_amd64.deb"},{"package":"az-dcap-client","version":"1.11.2","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"cb92041be615d8ade85036d7de605278bd7188bc5c22947f03fcb85685a5fb62","size":154040,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11.2_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.21 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.21)","libc6"],"sha256":"22ffa22a05d7aa611d2ecf6ee2165ac2bbcd2e6c2b99ca2a3a8f5283174ea5dd","size":143556,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.21-x64.deb"},{"package":"msodbcsql18","version":"18.3.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"526caf38a98d0f850975cb728a670702e5e60b31f75c87234f298b08f3b34990","size":756482,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6869230ff316720ef8a2729482a976f0289f492feb631080d9fc15226700bc38","size":227641572,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4626-1.deb"},{"package":"msopenjdk-17","version":"17.0.9-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324191,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"4d02c06a12e5808ad3a512bb10de1c3290ad7ebcb57fa0b08bd5d83e1aabc92c","size":164729206,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.9-1_amd64.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":13389,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"95eaff7c67998b27fc830d4526ff639c696649653b2c321fb3eaa80569bbd4c4","size":5767202,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.9)","libc6"],"sha256":"1d7e48c097b8a44fbaf341d6eeb8d176c809cd8950c5f1aecc7ce0bdfc1540a9","size":142246,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.9-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"35df0bf15be9fb9a66e520425a3d4ec04b16612f9cb57570a2403ad84eda6e89","size":2133946,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.11-x64.deb"},{"package":"azcmagent","version":"1.22.02077.406","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"28449eccc7003a5c00f74031562f05ed662b7d33840b587527a499dd0725c472","size":53412088,"filename":"pool/main/a/azcmagent/azcmagent_1.22.02077.406_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.422-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192924,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.422","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.28)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.28)","aspnetcore-runtime-3.1 (>= 3.1.28)"],"sha256":"4fd46756de5a2440abf56c14b75ed131c814d28bef262992bb0fed801fd0e621","size":49803220,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.422-x64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.7)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.7)","unixodbc (<< 2.3.7)"],"sha256":"80b52c6b1728146dd1f6b3adecb311c24fa7ca191bda569263c1733b3e6a9675","size":12024,"filename":"pool/main/u/unixodbc/odbcinst_2.3.7_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27359,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"1f36ec7f18be7b459632ced20ee68303e5a3ddcba882706a55c54c11082fc64e","size":2119378,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.2-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3121,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"7dba065dc52b8eb0971a30d69c50dc293f75a6def60479e7d452a41c911dd0a7","size":853508,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.5_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.21 Microsoft.NETCore.App 2.1.21","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.21)","dotnet-hostfxr-2.1 (>= 2.1.21)"],"sha256":"8c825dcedb392ed3175a4b850d44f9e5f14ff6b80c3716c5265f66489c4b0bb5","size":20615080,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.21-x64.deb"},{"package":"procdump","version":"1.3-13160","architecture":"amd64","section":"devel","priority":"optional","installed_size":6912,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"31929586fc7fbffac526aea3586a20eb87fbd8cdcd113ab4681b691d86ea294b","size":1130220,"filename":"pool/main/p/procdump/procdump_1.3-13160_amd64.deb"},{"package":"libmsquic","version":"2.1.4","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"2275d8debabc093181fb3cf6f2c07c9351365bc4a8941c69b985a099673b298c","size":4117996,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.4_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330653,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.302","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"592c559cb5fc9dc5440cea502e388cc7b0aaa1beaccb03f9360e3378e0a851df","size":84868880,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.302-x64.deb"},{"package":"moby-compose","version":"2.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"4701d0142cf88e7c8d4ab4eb0a10dc047826be0c05c683960a3ca523ce01d518","size":6501704,"filename":"pool/main/m/moby-compose/moby-compose_2.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.4 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.4)","libc6"],"sha256":"c2f16c44b5de02851e803ff1d70c08eab56ffd3d466098bb37e5c6a9cc753911","size":120982,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.11)"],"sha256":"e9524164ec468565083307fa5cc0e2f6788016f36fc1aec2f4cef622f676ac08","size":5772760,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.11-x64.deb"},{"package":"dotnet-host","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fb5bd7ba708921c0ca4aa2d1f93eb6cc3f32fae622e7cc08d33f13bdae4cb05c","size":52942,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"e2e154b631f938328fdb2c262de25cc7c6769a3705a2b55d30f00fab3d715acb","size":3524566,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.7-x64.deb"},{"package":"powershell","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"11756a6265bdc1ebd14d678ab08a6999c03e24157b26b2c2e40640e44cb46acd","size":69690326,"filename":"pool/main/p/powershell/powershell_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql17","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"3353db998891244d924958830ed1c11662afd4541b41b2d4bb82add7b69147f1","size":744322,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.9.1.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"825da08fafaaf997b1fe218f01921fdac410e70b740fb8b025d2da238f0f51e6","size":3522960,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.19-x64.deb"},{"package":"procdump","version":"1.4.1-14851","architecture":"amd64","section":"devel","priority":"optional","installed_size":11111,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"a52dc999199e47240f20d68afa15a97609ddda007ee8f07d714eef1816960c8f","size":1655962,"filename":"pool/main/p/procdump/procdump_1.4.1-14851_amd64.deb"},{"package":"powershell-lts","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1d06b358202357801f6f90d65cea6d66b0033aabf1464b70862e62f3d296b393","size":68377710,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.16-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336555,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.401","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"c87f7c06058a2b355817e5671b8d94d18abbf70fba8f72824ae81ac4c5d83005","size":86551776,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.401-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19892,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.22)"],"sha256":"7f5c3705f1cc77f3c3193dca3832c6fdcb61f4fdb013c5b2ff3458cff7b490cf","size":6617570,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"046f75901d5530e3b309ebecb2e6f22138bcc93ca8bf03e24debd99f336616bc","size":3521770,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.24)"],"sha256":"a6b3a2d5fdd57d9d6c06da6eac82ffd1d8a533bc7cfe8f49fe1def4eb7773e41","size":5771272,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.24-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"180c6180ef50729b20d7057f5da16b052ce52825a2e34feb1a39581ad22dd40d","size":2132638,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.9","homepage":"https://github.com/dotnet/core","sha256":"a64f3530d4ea352189d2b3bd0bf7def827c9ff70fce7b7655df0db27038dcd0b","size":3524010,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.9-x64.deb"},{"package":"aadlogin","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"da831404adc54b986650b7a5d0ea77269a6ed0bace68e1e969622ae0fa31760c","size":411524,"filename":"pool/main/a/aadlogin/aadlogin_1.0.016050002_amd64.deb"},{"package":"hibernation-setup-tool","version":"1.0-8","architecture":"amd64","section":"utils","priority":"optional","installed_size":65,"maintainer":"Leandro Pereira ","description":"Azure Hibernation Agent","homepage":"https://github.com/microsoft/hibernation-setup-tool/","depends":["libc6 (>= 2.16)"],"suggests":["btrfs-progs","xfsprogs","grub2","udev","e2fsprogs","systemd"],"sha256":"2282e902a532536d75e032f859081891348a168a40a926502e53f67ae4587926","size":18548,"filename":"pool/main/h/hibernation-setup-tool/hibernation-setup-tool_1.0-8_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70804,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.4)","dotnet-hostfxr-7.0 (>= 7.0.4)"],"sha256":"b351edd6cc0a5ff6196cb3dcbc093b80cf9ade1d1c003e8ce5441debb7650fd0","size":23198918,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.4-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227302,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"06f173ff68233d5255696a39a7477298f54eecaeaa111142dc6dcc79077cd644","size":58426066,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.300-x64.deb"},{"package":"dotnet-host","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3d4b6997505f014ebb26d3aba0ccebd348de2c3bc4ec36593abf84e61a3fc0b9","size":36598,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.27-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.16 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.16)","libc6"],"sha256":"069a564507c39d531f4c4383944086c58d4d7b570320f847798b50c819d96ffb","size":120712,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.16-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"3722d70b879528db6c8c47037c5d0a2e0db429e4092032a613452fe2c84138cf","size":1306732,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.2.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.4)","libc6"],"sha256":"108cfdb263731e0868975ecc77c21c56b25ca9c10ae0e196e774beeed0504752","size":141998,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.4-x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2634,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"cf6dcd76811967d54319060586e829c571f12233571cbdb7d3b5a0aab3d796c5","size":658658,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.14","homepage":"https://github.com/dotnet/core","sha256":"eb25b730300d4bd9398698a6a0b036cdbc32242d0b24e4333d9f367442b9268a","size":42450,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.8 Microsoft.NETCore.App 5.0.8","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.8)","dotnet-hostfxr-5.0 (>= 5.0.8)"],"sha256":"d81bac8b4ab60b3050b04a0b3b492996ad157912b9e63766b246bafd1f986e4b","size":21796060,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.8-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.213-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.213","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"13e725e6ec66079135a45ac5c445ffc96655df68291e295ae37c52d4e70c12a9","size":57728570,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.213-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27358,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"8510cbfa8935eff4b4f008d7cd03b93235dcf14a846a4bb9242eb38aa4025782","size":2124532,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.1-x64.deb"},{"package":"moby-compose","version":"2.18.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"195167c2fa9045437964e94690e1d59ebbff788b3e7adde5261980c02f799ae4","size":10878722,"filename":"pool/main/m/moby-compose/moby-compose_2.18.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.3)","dotnet-runtime-deps-6.0 (>= 6.0.3)"],"sha256":"6525eb9f979c86b5ff8bcc4b4f003915845eb1cffd3f42611e134b468489d755","size":22886032,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169366,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7baa7d3e12053844fc4b069302b00346d11e83b7bb59a25702c58b555c643705","size":66943402,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.5-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"7d8324d65e4eefa0b979f0a92684391b1b554d31ca856895a4fce36b5a99d104","size":2125006,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.4-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"36cb535472ecafe46ca2004104756ef19386b677d54066a1f378b99b2de352a7","size":10216,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.015950001_amd64.deb"},{"package":"scx","source":"scx","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"bf2e8aedcd7b14cc7cf7030e8e1fbf341b8d50b083912d17a1ccfee9e1d1cd08","size":2588348,"filename":"pool/main/s/scx/scx-1.7.0-0.universal.x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.109","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"4b39fbb5aa288a2e676bc8103efddb6530271df6e4508c1589b98e9e8bcb06f0","size":43432762,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.109-x64.deb"},{"package":"moby-cli","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"ebb5874e6643b0d4fcfd33f0448db23fb7e0f85f63ed48bfd8ae666942b19c9d","size":9661496,"filename":"pool/main/m/moby-cli/moby-cli_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403080,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.401","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"65516f369d674b7cb6890bc5938d43689e154d468fadbfa8a0aa5e9739749694","size":108167894,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.401-1_amd64.deb"},{"package":"blobfuse","version":"1.4.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":34335,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"f9ec2fa0180f705094a90c3778ce77a3a7e3e01053134f84e40ba68601423734","size":9847136,"filename":"pool/main/b/blobfuse/blobfuse-1.4.3-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.15)","libc6"],"sha256":"9bd0c52c9ad70420d6df3cbecfe6163212c4f857b07a1d638f845b4a460d82ac","size":142382,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.15-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"cc2685bf04ed2521b1075a7f39183817da59cdcc894f56fb424b9f40863405c6","size":2122592,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"servicefabric","version":"9.1.1206.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"40de2a402e9a41d8e0e6b513fcf3a7d52c2aa0c7483600fb73b02a9c11e28b17","size":219772344,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1206.1.deb"},{"package":"aadsshlogin","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"a7a7b67e9a9c93d60f890520d4690266618f3c268ead39018680be43656d5526","size":422178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.021030001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18531,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.3)"],"sha256":"ca38e724678e3e24216f612b028dc1ab788988d7d97f47543b0b64e247a3e143","size":6085600,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.3-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":193677,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"be418a526d5fe68f39aa1ab126c6262dbf870ae8501ba44ce8b020a2282c536b","size":70083566,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.10","homepage":"https://github.com/dotnet/core","sha256":"037f67656103db1e0003abeb8f793a88164ae03ec0b3e1b20c5d64af326e0a79","size":3399672,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.10-x64.deb"},{"package":"moby-buildx","version":"0.11.2-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"52da4bc1d26985870e1840e26ce312fdeae4681c26b5ad96171370764dce449b","size":34231732,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2-ubuntu20.04u2_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.16.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5740ee368bda3a087c695eb0439b892dbfc5e57ea4fa95df28138065569b18a5","size":193677516,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16.1-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"7626df3cbaf454d15cad5272495e8d3a6e11b67a9ff314b92bc720ed9b5b0e3b","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020250002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.203","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"662a0caec7c1e365f7f653fec119cd1462a5a3617db478fe23fc7eda791e9bb2","size":57518152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.203-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.111","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"ffb75e9c46aa5f8bb9eba3adbcb9f4e1e31ea98a47c6cf0deeb7268ff26662cd","size":78477024,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.111-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.13 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.13)","libc6"],"sha256":"23aa9b20787674470eccbac91c559d35c35bf2ecb7e076e6d53aa5a39f52e792","size":140398,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.13-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":408,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"d0c20931d42e3bfa3c62692ed459310272d6c44896ed3dee5a8ef2f17bf44937","size":162704,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.1.0_amd64.deb"},{"package":"azure-ai-vision-dev-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"4be2318c1cd29827197b2d9645b26bee8401f05aa7971fcc1b742d3daf136de6","size":114308,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b289ce53e31fa8638fc202c4696fb2c192f3f9dabdba3181d79d5b7cbafed030","size":55824,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.11-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fc9288295fef2cfd7ae9a90ad3c26fa3ff760ed6e606796fb9741c6e9566ca72","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.26-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.311-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.311","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"c1a665a32c50c5304923b06d3186e921829b342b6be153a772b420d9e628b9bd","size":85165330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.311-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68142,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.20 Microsoft.NETCore.App 2.1.20","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.20)","dotnet-hostfxr-2.1 (>= 2.1.20)"],"sha256":"8575c612e0632a90710fabe8d76ea218b1b9dc83f62f2720d4f531c6d2aa6031","size":20602712,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.20-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d00554d3b7f1344606017276386b2036fe2651c068a346b69e0b04e1cd42851f","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019900001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.102","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.2)","dotnet-runtime-7.0 (>= 7.0.2)","dotnet-targeting-pack-7.0 (>= 7.0.2)","aspnetcore-runtime-7.0 (>= 7.0.2)"],"sha256":"33b2df24c016de3a7bc5436cc3ede1be2eb990a7b66d5744060b140890174a45","size":90599622,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.102-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.7)"],"sha256":"0ed727999af4970f63aefcb531cfb0d7f082b6aad5062d168dae767a61191c08","size":1518774,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.7-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"428a0d8326d46a397bd195f63b5954618491c838381bb1d550de054d0136883f","size":1315186,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.18-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21330,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.0)"],"sha256":"aac90ab87ac39bf89adcd5218905610d388b9c9721c82a7156eb7b3750c3a726","size":7050452,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.0-x64.deb"},{"package":"powershell","version":"7.1.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174315,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cf2d594765c3d40800ac6f838e8159d6952e1abcca18976e2b13e0a819d9c401","size":68281910,"filename":"pool/main/p/powershell/powershell_7.1.1-1.ubuntu.20.04_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"045926eb2b3ad031e0c2643bd6b219d3f8d8964fa484a10fd4e0fc29059cf7b2","size":172042448,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5148-1.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"302756ad147ecf2774368decd127789888ec31948fa42cd2d8bb3ce9435a8ca6","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.19-ubuntu.14.04-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":168,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"95ced03d2790f46ce2a827f44ba643158ccc8ae144d973f8ccc14e16e73f79bf","size":57830,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.4.0_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350036,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.104","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"1d57fcf96fa0c19c0bacc60a343952b9e21d1f3cadf38285b60160638bda93b6","size":90606898,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.104-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.28","homepage":"https://github.com/dotnet/core","sha256":"a70f9988c9e6f17bb5b7109b9901c44858c9a9bb3a65c85954a694a3c7f6a50e","size":41858,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.28-x64.deb"},{"package":"intune-portal","version":"1.2307.12","architecture":"amd64","section":"utils","priority":"optional","installed_size":23134,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libglib2.0-0 (>= 2.12.0)","libsystemd0","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","msalsdk-dbusclient (>= 1.0)","libgtk-3-0 (>= 3.21.4)","zlib1g (>= 1:1.2.0)","libgtk-3-0 (>= 3.9.10)","libsecret-1-0 (>= 0.7)","libatk1.0-0 (>= 1.12.4)","libstdc++6 (>= 9)","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libssl1.1 (>= 1.1.0)","libc6 (>= 2.28)","libsqlite3-0 (>= 3.7.14)","libpango-1.0-0 (>= 1.14.0)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","libpam0g (>= 0.99.7.1)","gnome-keyring (>= 3.36)","libcurl4 (>= 7.16.2)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ab7513205ea60621a08748343804d0e0675dfa29a62cfacea6d47531756032fc","size":5520188,"filename":"pool/main/i/intune-portal/intune-portal_1.2307.12_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227608,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"8cbb8c82766e861928b8e349046738ed8cf411e0be03cbaf63a625236056350b","size":59260772,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.401-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"77908625884345bc3114dc74ad4a48e0761d5ebfff8fa320cc195d1d30b107c1","size":838530,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.17.7_amd64.deb"},{"package":"intune-portal","version":"1.2302.9","architecture":"amd64","section":"utils","priority":"optional","installed_size":18587,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libssl1.1 (>= 1.1.0)","libsoup2.4-1 (>= 2.4.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libx11-6","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.9.10)","libpam0g (>= 0.99.7.1)","libglib2.0-0 (>= 2.12.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libcurl4 (>= 7.16.2)","libuuid1 (>= 2.16)","libsystemd0","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","gnome-keyring (>= 3.36)","libc6 (>= 2.28)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","msalsdk-dbusclient (>= 1.0)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ae0cad3b35b4601fe82a86d1c27b6526b47f0cc207b2bec0d85294059526ba71","size":3341216,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.9_amd64.deb"},{"package":"moby-cli","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e6b58e72860d678fd4892e01d410f22fa6a8b45b7998edf7991773e6e2337e00","size":16382092,"filename":"pool/main/m/moby-cli/moby-cli_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":215512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.100","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.0)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.0)"],"sha256":"fafe422d1610e009d4d68a433f651e43ef70ccbfa520d6163d50e92d407373a4","size":54972274,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.100-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18555,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.17)"],"sha256":"8ae0c155fdc56a6108e6ab13efcd2751bc1ac32a4c0a71cdd3bb9a200e5593ab","size":6086064,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.17-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.13","homepage":"https://github.com/dotnet/core","sha256":"11dc2d0bbc76ed8b6c61245a341f61d70c98c1dd8d46882aa9abde6f22d783c0","size":3403016,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.13-x64.deb"},{"package":"msopenjdk-11","version":"11.0.14.1+1-LTS-31205","architecture":"amd64","section":"java","priority":"extra","installed_size":317249,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9b31fe51c3b9edb59e8dc845eea04caca78d7bf1ccd9cac22b6004971663299f","size":193693992,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.14.1+1-LTS-31205_amd64.deb"},{"package":"blobfuse2","version":"2.1.1","architecture":"amd64","section":"default","priority":"optional","installed_size":30725,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"4b2d4ba747ca1d40625f3439382abc7245fda059f8d91df335f4028b099a00ad","size":15360896,"filename":"pool/main/b/blobfuse2/blobfuse2_2.1.1_amd64.deb"},{"package":"moby-cli","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"83d59b6074be2ce5d275af61e335bda29dca2de3c1c066f1068319f0bdab3fe7","size":10587436,"filename":"pool/main/m/moby-cli/moby-cli_20.10.10+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16368,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)"],"sha256":"3378d5a53fb6786597571960a69f94b58c4b271737689072d055ccc9758df51e","size":5060332,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.9.0~beta.1-Linux.deb"},{"package":"mystikos","version":"0.9.3","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"bbe27f1fee36b2c1138ad976ebe6c496821b51bfa74503ae06d8a894f14a9e8c","size":4315728,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.3-x86_64.deb"},{"package":"dotnet-host","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"15f7336f94ddc3131fb6977e38fef042fa0fe95198c111ec6faa8b4bf5d0119f","size":57386,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.7-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213489,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.103","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"3c18b7203d6a38930a0b5c266e6dc0946d2e7457f8db313629c8ba6391d76930","size":55140132,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.103-x64.deb"},{"package":"dotnet-host","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d9220d3f42b7960997b23f3254fbada2b905ea1b91fc80d200580d697bde1914","size":57270,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.1-x64.deb"},{"package":"powershell","version":"7.1.7-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171640,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9cd3e76f87fabb0078270cf7cf7f8e8380d9b442a5e5696fd9054d3f2015a744","size":67148874,"filename":"pool/main/p/powershell/powershell_7.1.7-1.ubuntu.20.04_amd64.deb"},{"package":"msodbcsql17","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"ea72c644ed9a2e0ef21486ef89544bb2aefbd7e0e9daa7ee708a9d6719ee38fe","size":744242,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"362826c34eff451d35a8970e7a755d70407ec1692e120df11e6f3906ee62a36a","size":52424,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.11-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.12 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.12)","libc6"],"sha256":"aa2138928390fb13617720957d7b3afb4f6ae2af59794505470d6a38f61ee419","size":140278,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.415","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.21)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.21)","aspnetcore-runtime-3.1 (>= 3.1.21)"],"sha256":"255fd286f4d28ecc4b6f9c7dc1d734231876651f46cbca9292bfcdceb3c007c2","size":48251046,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.415-x64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"89d9166fec67c6f23e21fbf7e33e0d40f3fb1ec8f77078f79bc42ee2eecc66cd","size":510722,"filename":"pool/main/u/unixodbc/libodbc1_2.3.7_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"c9672f06b201be1df4ef1834a98a1447fdb57907d817d35e47ffd01b9754e8e9","size":1314366,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70837,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.7)","dotnet-hostfxr-7.0 (>= 7.0.7)"],"sha256":"ba5c8bb6c3509d24c9f5fb8ed8b8ac51165044be3bbb726e094c781f9cc04d49","size":23204566,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ad734ae671ee9f3423e6bfc8d96b2e8fb0ac309ccf68618bd9c426a00d41c3e0","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.16-x64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.3","architecture":"amd64","section":"default","priority":"extra","installed_size":27627,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"2329a1130035d20325ac4ef38c174da38b51866c3ebc48c5f4ba6988493392d3","size":13042900,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.3-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.614-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237153,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.614","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"b7f99c6c345423943d5758c0b1857f4698280f0e35761aa3b1a848671ee466b4","size":90818518,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.614-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.426-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193108,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.426","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.32)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.32)","aspnetcore-runtime-3.1 (>= 3.1.32)"],"sha256":"5d0ffe69e1f9b2196e012a9ec3e7dd55045f2cf648f008f48871505083eb707c","size":49845438,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.426-x64.deb"},{"package":"dotnet-host","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.21","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10c0bb4a6e888b7b793ce8c2119cce80ec85c5dc2efcf36fd42be9c2ff123fe3","size":55830,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0690100dc9512fa877e61df0f6566c66635d634f8567bfa26edf9e9f317be0e1","size":2892,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.0-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"92e36a0001ef2bbe26cb348c1f28f73ec5d6d80f59f00466c043b63ee882814d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.27-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337395,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.415","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"271f45bad6cd63327162eccf54fd12bf0b13eac42100147cf03ab105d372241a","size":86815422,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.415-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.6 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.6)","libc6"],"sha256":"8e0cbb8d34ee9f019b93bc67988342e4342f8bc37c2a311c4f1536fb5612bc5f","size":140272,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.6-x64.deb"},{"package":"osconfig","version":"1.0.1.20220125","architecture":"amd64","section":"devel","priority":"optional","installed_size":3664,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"7d0a0742647236cc220429f357d9a140fc0c4961297528849d5aeb7234aab878","size":1279254,"filename":"pool/main/o/osconfig/osconfig_1.0.1.20220125_focal_x86_64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11-1)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"752ba4a9819e49a44200ddba803dd9c3f9147c0ee70b1d8fceacaa2a9fcb7cbb","size":21274,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71074,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.5 Microsoft.NETCore.App 3.1.5","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.5)","dotnet-runtime-deps-3.1 (>= 3.1.5)"],"sha256":"bbf2694874198386228b90ed189770f0f256bc2149732af4f31df060c2f6f762","size":21773970,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.5-x64.deb"},{"package":"dotnet-host","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.2","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9bffe3ef7d2deeb6bc0b7c57a8d0e1c82e801df762dd182da78f60529eb2111f","size":52992,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.2-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"11e47eee5018c4a82404e43a507b7dda59d44c7f0a34b5b2f7658749b4d105f3","size":166004040,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2936-1.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"recommends":["dmidecode"],"sha256":"99db20012d0600ad184a115e2668d18bba828539c6e9084cda153baf6f43e317","size":522078,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.6.2.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"6090cadb2918f982d6421b7b1307de164ec003d06146541f6154de564306b5b0","size":1315928,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.11-x64.deb"},{"package":"aadsshlogin","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"165d818aae5aebda9e537556b050574e813b9f8d4043cd55183f95728220be33","size":419386,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017820002_amd64.deb"},{"package":"mdatp","version":"101.02.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"eb9b29c37dd2c540a6d9601ca63dcd146aca555bec77d6cafb54d2bb53c58f5c","size":16305960,"filename":"pool/main/m/mdatp/mdatp_101.02.48.amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2664e4aa37902a632023857b19e7913c0f1bd356923af66f7a7a7ba5690b05cf","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.15-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"35ee7c2da9cf72d513b84a8bda149edcb7342248e50042216209289cf4e7e5e2","size":1315266,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.19.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"0559e3987e2fabfa1ae1d3a1586b33933876f2b849b3780d7a71f9a9d4fd5483","size":11862866,"filename":"pool/main/m/moby-compose/moby-compose_2.19.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.62.74","architecture":"amd64","section":"devel","priority":"optional","installed_size":210088,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"96d94685a98b33763201c3285713959757eb7255af58cae346fc71aedba2f80a","size":61608068,"filename":"pool/main/m/mdatp/mdatp_101.62.74.amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a52631688cf7998ef0677dd0931381e95606d0a0e194c2f861792281f6ce52d3","size":21194860,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-2_amd64.deb"},{"package":"moby-cli","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83541,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"58450e88d4bc91611b8838a5a2fe36f2b5241e160060a85d26040f258d7b5319","size":16409404,"filename":"pool/main/m/moby-cli/moby-cli_19.03.12+azure-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":173637,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"41ece23dc2b75bbce34604f3aac521ad2edcea4a3cf20f2c3016f509d9bd240c","size":69264320,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.4-1.deb_amd64.deb"},{"package":"mdatp","version":"101.25.09","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d3add92c54fa8c01cbff8a8f25f3e9e99b28add48a8cf11d9d03413505088aea","size":44872318,"filename":"pool/main/m/mdatp/mdatp_101.25.09.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.424-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.424","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.30)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.30)","aspnetcore-runtime-3.1 (>= 3.1.30)"],"sha256":"c210f414ae6fac87305dc87332e42eb236ecf9aa87dc239737603ead0745fb97","size":49828584,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.424-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"sha256":"6a8703b6c1146c24a62fc784a12ef0dc05517f6294dbecf7e88e5d512b8ae000","size":245508,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.6.1.deb"},{"package":"powershell","version":"7.3.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196880,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1447a6d90aa66616757290e8a4bde7df0ee14d9b77aba8d73021e849ad12f418","size":71750824,"filename":"pool/main/p/powershell/powershell_7.3.4-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.7","homepage":"https://github.com/dotnet/core","sha256":"484dca5074596febea3aeb4a00aec9e9c27c7cd408132f26ddb8fc3d3218e359","size":3399110,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.7-x64.deb"},{"package":"moby-compose","version":"2.20.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59070,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6b86549c464b157e4c9fc107296f8b591126a2ab07ff06517a9ece80f3d52523","size":11866170,"filename":"pool/main/m/moby-compose/moby-compose_2.20.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"microsoft-r-open-mkl-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":275115,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"c5dcc0d4756b0d6cac39ea38307c08726e518daa96b37efa597002e21888f81a","size":91215626,"filename":"pool/main/m/microsoft-r-open-mkl-3.5.2/microsoft-r-open-mkl-3.5.2.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21336,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.1)"],"sha256":"675601d3df8f116972c0786de4512a99f01c1f6cd8058cfb56f83ae7dee70ea8","size":7050794,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.1-x64.deb"},{"package":"servicefabric","version":"9.1.1457.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"70d31017bda3a7f1fcacbbed2db83f32c4f75be3d6e36679adf4ff0321a33740","size":219672394,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1457.1.deb"},{"package":"sysinternalsebpf","version":"1.0.2","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"856043680b2ccab0ccc12b284efa368d610e690a2165888dab349828dc21ea59","size":446972,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.2-1_amd64.deb"},{"package":"microsoft-r-open-sparklyr-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":267912,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"10b1881851d3ecb42e4283da60edf6f6b9f238765f2ee8d22a0d2899af4c412a","size":70041338,"filename":"pool/main/m/microsoft-r-open-sparklyr-3.5.2/microsoft-r-open-sparklyr-3.5.2.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.0)","libc6"],"sha256":"aba67fc99134f951372118c3f843be58fb05c33d5ceff5aea080eff62b8917eb","size":144012,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.0-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331267,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.304","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"4110bad4f70bd90a71271910d42d25449164217d2e2078e4f9280c024e2b76b8","size":85036956,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.304-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.413","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"388e3816185346fb6298d5ee0b165ac9510b0ed47881c4e652060a4877fe9120","size":48204804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.413-x64.deb"},{"package":"dotnet-host","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8fd1104b360e1dd8e47e89918e40055a270ea8f69721822d56a903f642c6e575","size":32402,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.22-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a6831312aa0061731cc78db5b255b3631093e10211d7c280f2a0010f188a7eeb","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.20-x64.deb"},{"package":"osconfig","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":8287,"maintainer":"osconfigsupport@microsoft.com","description":"Microsoft Azure Device OS Configuration Agent","depends":["liblttng-ust-dev (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"c80210777f54639283cdc6daffab34cbb020ffff9df15d771565f13c8bb2dba0","size":2009152,"filename":"pool/main/o/osconfig/osconfig_0.4.0_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.13 Microsoft.NETCore.App 5.0.13","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.13)","dotnet-hostfxr-5.0 (>= 5.0.13)"],"sha256":"9ad0e107c1ae2683cf643bf740a5fdebd342392e823f349d4ee8745748cf3816","size":22269634,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.13-x64.deb"},{"package":"moby-compose","version":"2.20.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59057,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6d3a316405dad90540fee81ff81841c0e24ab5de354ac4b3450e1232579046e5","size":11872246,"filename":"pool/main/m/moby-compose/moby-compose_2.20.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"80347c4205b28115fd646cd8d86a1fa3e09188dd3dc4c4d616097adfb0834940","size":20988132,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.616-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237173,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.616","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"986099cbca19649ad74900db804c7db7116581a3c676ff3f00c9b10c2b213bbe","size":90824460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.616-x64.deb"},{"package":"adutil","version":"1.0.014","architecture":"amd64","section":"default","priority":"extra","installed_size":13784,"maintainer":"","description":"no description given","homepage":"http://example.com/no-uri-given","depends":["realmd","krb5-user","software-properties-common","packagekit"],"vendor":"none","license":"microsoft_adutil_license","sha256":"8d4040fa87b6a2d79c22d7ad9094f9853c7af21646cb6d52b658e3eada0cc5b1","size":6701622,"filename":"pool/main/a/adutil/adutil_1.0.014_amd64.deb"},{"package":"azcmagent","version":"1.2.20314.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e62f0680c77eb9daa2c7ffd61846f6a6cdacc900d5b678b07d0367826bddd6b8","size":18337190,"filename":"pool/main/a/azcmagent/azcmagent_1.2.20314.002_amd64.deb"},{"package":"dotnet-host","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"665595e26dcde23629c8684e4aa7526237ea8d983000b46cd3d308ab6508f376","size":57242,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18560,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.1)"],"sha256":"94b5917f271e0c978ac095062cda3c349343cf22443ffe6c2cdc39909df10d53","size":6085584,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.24","homepage":"https://github.com/dotnet/core","sha256":"9cc4d53e2df092267fb8d53eb3bed3f1ee46d48a2adc7c82350b0310572bbc51","size":42318,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.24-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.5.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":164,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"67196e19834fbf9242a7b5d4e4e4f857fcdff2e1693e9c934a2a9b14c027cad3","size":57722,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.5.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.14)"],"sha256":"accb5c7d83b8029a841c5f644b3385059e4c0cc523dba69d0631c8649db65632","size":5771036,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.14-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.13","homepage":"https://github.com/dotnet/core","sha256":"1869df3ac2c3474befddf2c1c4be4ef5b86a25cca046613c7e5c85bcd5bb1984","size":42476,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.13-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"30f04454aaa1fd33c74b40c8e608dfb3810d89de0c21cd0587cefbdc6e7b6621","size":154905788,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5174-1.deb"},{"package":"dotnet-host","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4e62b76f0f8d8eae41ee1f21090bb9909f0024f2d3dc3fe928a312c2bec9fc69","size":57340,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.0-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366875,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.304","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"3e683a05c3ae357896c893fb09a56418274c00498d0344af59e5d0b152ae82fd","size":96542450,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.304-x64.deb"},{"package":"mdatp","version":"101.60.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":207295,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9dc82ebe9bb10197b5286a7e34985ff308f583b719b93f8fdc4e69e2034c649b","size":60778376,"filename":"pool/main/m/mdatp/mdatp_101.60.05.amd64.deb"},{"package":"dotnet-host","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"38a501c55de8b0a2524f3af7f9187c14998e71f029b39c129165947c7ee29559","size":32522,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.18-x64.deb"},{"package":"msodbcsql17","version":"17.10.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"cc1b9698129f000c611f81b30e095a4cad804fba0af522b4d4e0035e51b82284","size":744524,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a43e2efe34f43412e02ef3deffe082cafc2e807e52f435184ab4a80f9dd325ac","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.29-x64.deb"},{"package":"powershell-lts","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"015e5607bba35fa1a9f348dab3b550c1339763bd2fae07ec05c0c2155d045de2","size":58303714,"filename":"pool/main/p/powershell-lts/powershell-lts_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11-1)","odbcinst1debian2 (= 2.3.11-1)","libltdl3-dev"],"sha256":"2d23185d950036681d26bebe982a533480de1415899b767dc9f84bab6f0f4cff","size":42366,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18561,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.2)"],"sha256":"975acfce69f012f1021b60764458ffb3fc8012bfc774f7833a55900b044b7608","size":6086552,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.2-x64.deb"},{"package":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11-1)","libodbc1 (>= 2.3.11-1)"],"sha256":"7efce8fcc4bd0e64e4c0e86506af4c139e7cef469f4aa8162bdab9af2e1a575b","size":51534,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.26)"],"sha256":"32820d75d0adcceac8fd7a1384b13965f643f4b941c9388999f2e0cadf52fe16","size":5773088,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.26-x64.deb"},{"package":"moby-engine","version":"20.10.16+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"4f331b0590adc6b7ed0fdd3a952bf7a8e30cfe1a97ad13f0975219a024d0ed5c","size":20970224,"filename":"pool/main/m/moby-engine/moby-engine_20.10.16+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"800c8676b1b346df51b68e564e5c3b08a5f1b4adc66dcf304004ce8e7d747c72","size":69393916,"filename":"pool/main/p/powershell/powershell_7.2.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337170,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.408","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"edc5a25502bd63d67fcca871fee05dd2232b92a2d32318506942ab18c6b28b06","size":86692582,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.408-x64.deb"},{"package":"powershell","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38ad697f50dad11ff4579069505cad9c458f70604607156c8018ac01bca6c2e7","size":69408482,"filename":"pool/main/p/powershell/powershell_7.2.3-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-3.1","version":"3.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":24673,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 3.1.0","homepage":"https://github.com/dotnet/core","sha256":"7c353df836befb40aeeb1ce0b9193445f2a340e57e6f5ab5213d5d48fa867729","size":1987718,"filename":"pool/main/d/dotnet-targeting-pack-3.1/dotnet-targeting-pack-3.1.0-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.18 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.18)","libc6"],"sha256":"091fbf1a4809dba00e407ec2de57c5ed5142c64f89dac9dc6edda75286d6c2cc","size":143800,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.18-x64.deb"},{"package":"deviceupdate-agent","version":"1.0.0","architecture":"amd64","section":"admin","priority":"extra","installed_size":5348,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.63.0)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"534423643d3222ba25888ee6d5ec27428f4b8598ec8d412412e8d8b5e9f623a2","size":1945752,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.0_ubuntu2004_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"18c02cb01e0d95ee444ad6f83ae87f99db0240bad798dba74cb7c9308894d5fa","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.018440002_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.24)"],"sha256":"22807c1504a6147d029957b8bb7efb2430ed64dff6f9a09baeb6b8292c4a5e6c","size":6621650,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"powershell","version":"7.1.3-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174299,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ed800c0e58560d6a4f743e68083f8b46bef29670917c250157aa2c1170a6e502","size":68316948,"filename":"pool/main/p/powershell/powershell_7.1.3-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19846,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.4)"],"sha256":"87c010ec02884e7dbc8592468b23f521b3002a2a94615b4e3a1bdeac84f0f82d","size":6603012,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.4-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.11)"],"sha256":"69ad7c8416e46b4928fa0dd6287ca9ed1a0aea9841bb3789407f84dc2c35b114","size":6086112,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.11-x64.deb"},{"package":"blobfuse2","version":"2.0.1","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"a2b80fb5f373aaabbfe6be13185f01f2476ae8fc9fad6f63a1bf39e8d1995fbb","size":13151180,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.1-Ubuntu-20.04-x86-64.deb"},{"package":"libmsquic","version":"2.1.8","architecture":"amd64","section":"default","priority":"optional","installed_size":16108,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"9622432bdcedddff93aa4db72970e711b4539913430ff29659ba511e51ddeae0","size":4127324,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.8_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.12","homepage":"https://github.com/dotnet/core","sha256":"8e503b4527ce44bdbc7faa74049e45505cc2b6fe397661dad18fcbfb03df52ff","size":3401078,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.12-x64.deb"},{"package":"servicefabric","version":"9.0.1103.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"98a528527d6a0a12297a7afc8a41f8a13bedc2483d1735e421087c2a5f893b40","size":219663890,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1103.1.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"8d6633d7d637add6a27594687c3bd216f20e83c9562dd580dae66f01d311e254","size":3531962,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68322,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.2 Microsoft.NETCore.App 5.0.2","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.2)","dotnet-hostfxr-5.0 (>= 5.0.2)"],"sha256":"db38c3122097400e46b34f26079e29cf5c8428d28d64b62b05970a10db844596","size":22091490,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.2-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b4ee3e096d381244271ad46a50d577c8d846190eb89a0b71a695ab6529b24932","size":228285568,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4899-1.deb"},{"package":"moby-containerd","version":"1.3.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"92f29353da40defd3a7c370379c6f7e0a9ced4da0c600a271de9eecc7455247f","size":27658880,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.6+azure-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.11-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"be07f8c4f44811d550e068822d7089b9728dd48396137d6ff2ad0ccfe934453c","size":13346,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.11-1_amd64.deb"},{"package":"moby-runc","version":"1.1.8+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13394,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"6efe544dc8808d41f55eb25b1ff308dae9579ff90946f2d7dbd7af21a60f452f","size":5766794,"filename":"pool/main/m/moby-runc/moby-runc_1.1.8+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.16.01900.74","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"afa6965d84a6d1a16a0ee872f1d6dfea851b3a4380940b8967144f37c5283033","size":51768832,"filename":"pool/main/a/azcmagent/azcmagent_1.16.01900.74_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86937,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e2c2fe4a09cf5f7ffa9d8b7907154fbd9b064d4a8dab439ed8844f2535325f8","size":20687466,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"az-dcap-client","version":"1.10","architecture":"amd64","section":"unknown","priority":"optional","installed_size":305,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"9a271799ce89fd47984139049ec3fd10ed9b77f14b0fe3211ebeaa47793c8af5","size":63908,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.10_amd64.deb"},{"package":"intune-portal","version":"1.2305.20","architecture":"amd64","section":"utils","priority":"optional","installed_size":22982,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libgtk-3-0 (>= 3.9.10)","libsystemd0","libgtk-3-0 (>= 3.21.4)","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libwebkit2gtk-4.0-37 (>= 2.5.3)","msalsdk-dbusclient (>= 1.0)","libpango-1.0-0 (>= 1.14.0)","libsoup2.4-1 (>= 2.4.0)","libsecret-1-0 (>= 0.7)","libx11-6","zlib1g (>= 1:1.2.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libsqlite3-0 (>= 3.7.14)","libpam-pwquality (>= 1.4.0-2)","libc6 (>= 2.29)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a3f9d7865374e7dd6a85ec4e73e0fae95fe28debd20ce333c08a9b68e2c05b43","size":5479172,"filename":"pool/main/i/intune-portal/intune-portal_1.2305.20_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2881-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"482a8e5c6fcd606b143216a601aa73f591d4b25cb99fb83b779f547effaeb5ef","size":190000560,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2881-1.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":10691,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"d60972a661d73058eb6d73319b7dcda94eb00da583a7497875028b129c7e2456","size":1062648,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.10.deb"},{"package":"dotnet-host","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1be8d37b8f7faa65fca577ffd1e11a3ce46a6696f3a43b6797df16804cdb5ab1","size":52498,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.6-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.30 Microsoft.NETCore.App 2.1.30","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.30)","dotnet-hostfxr-2.1 (>= 2.1.30)"],"sha256":"63e8907cd90cddae09f0ac69046cd2d19f0697497bec6f3ce83b6b5391b0374c","size":20502672,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.30-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.30","homepage":"https://github.com/dotnet/core","sha256":"069e6a26225a5e74628c552ab81cfd2e1a3851cb02a9a421dcf77212f7a2ef3b","size":42436,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.30-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0bba8b9e9cb23965807d7dc23dc6244db2f7e87634bff1c63f002f35cc1f43fa","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.20-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11743,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"316dbcaeec56d030ba6a4231df05eacaa515ceb27c5ab9ce3a66a9975494811e","size":1313840,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.10-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.313-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.313","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"4d74db683c8cb69367f466c95fd83b71ffbfc1e7b6b3b92ee3fddd6297d170dd","size":85182878,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.313-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32c458736e9aea5fdf27cd90b588d12822af06509cd1d810c38c491c338842e4","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.27-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336089,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.400","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"0c2897efed36675878f930783e75164ef8b537c90919f6308465045902a71c79","size":86384340,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.400-x64.deb"},{"package":"moby-buildx","version":"0.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68407,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"007d659dabff0cd6802afff642839960827c3f1eee107432c2f97f4b79fa4b79","size":25545586,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter-src","version":"100.69.62-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"499d5c0c2caf30b4be33753611c94edd449b87a2b40d4e200b53174c76aabb0d","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.62-2.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336570,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.405","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"04685c120f0b0db34950bbec26377fa60cdfde91537311cb6079eafa00eb6191","size":86616330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.405-x64.deb"},{"package":"dotnet-host","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbacafb7536e169aae3c7f15ef9785cfd81fef05408bd1fd38fe91d376329367","size":57478,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.2-x64.deb"},{"package":"aadsshlogin","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"28e496db72e754289da28be9e60c5e3f6ec9a424add33e82f306027baeaf3e2d","size":287178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022600002_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.26 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.26)","libc6"],"sha256":"c33fbd6e073ad51f46f68df8283a793746dffb7949224b7f83b3fed3abea8496","size":143872,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.26-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16360,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core"],"sha256":"b9365e91642d8582a2fcba79a13a51607634133644da0c97a0c425e662cd8168","size":5028016,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bf710391664124748dacdcc24f360a55e63131e132b7f4d4e080c157b797ecad","size":52564,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.14-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b65bcfd2a273e8e3b55bbf6f0752097b8dece00d9706ee9711d6a1d4af82c404","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.31 Microsoft.NETCore.App 3.1.31","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.31)","dotnet-runtime-deps-3.1 (>= 3.1.31)"],"sha256":"655e60ffab7d47476c26feb82a4ec22da080f72796d504ce5bb325383a1b842c","size":21793662,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.31-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"2723e90f7b3dd4840f4a5ecc62549f04ef3ff82f93fd177e5b8afa30d995748f","size":2568010,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-host","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"dcda2fc1cc44a0bfc87ec4a12649724a984d4c61b4d37ed5d76d87baf6f82a7f","size":32932,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.7-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.115","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"e39a2e0f210472491b067fcd120cbf2d4a7fdb238f3752733524306013da7354","size":44109078,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.115-x64.deb"},{"package":"powershell","version":"7.3.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172707,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"67dc90155fea76997645ca7490db1d33d2afd7328df609a2d1c985be0229c13b","size":69306108,"filename":"pool/main/p/powershell/powershell_7.3.5-1.deb_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186673,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.2)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"72460d8a199f2196ba5ff54cc1bd1ee8125088eadfd21ce35612dd84a2d8c9f2","size":46549742,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.300-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169450,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5565b2b4e1a9d140225923852ee535f324b5d52600414b1c7a3617999b1a0593","size":67105078,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-host","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3114be3bdae538f5bbe7ac72767371bfa084da21e35940b31416f2adce9145c4","size":52900,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"be3f9431764a17ed1f43cdeadd84ca2b5b1b800b2752c8ee35a66977ead3170d","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.7-x64.deb"},{"package":"azcmagent","version":"0.9.20168.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"d04f34fc297a26bb0df31f4f2d9f6ff4e3a00f5667ee69bfaeb368bb7324b160","size":34124838,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20168.001_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.809-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241164,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.809","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"6c3eb3b198e557174c7d5fc5777e2334ab3823c0579c4510650428c5ec02aa95","size":91744846,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.809-x64.deb"},{"package":"moby-compose","version":"2.19.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"78438210da0503e16dd86dd250a7368d8da1ab0e9b9e123cd1ede23a9c104f87","size":11868470,"filename":"pool/main/m/moby-compose/moby-compose_2.19.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f04d30e58186de5c16d2014702163a1bbaf1d45c81a8c13c96529f1e757ba485","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":343757,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.100","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.0)","dotnet-runtime-7.0 (>= 7.0.0)","dotnet-targeting-pack-7.0 (>= 7.0.0)","aspnetcore-runtime-7.0 (>= 7.0.0)"],"sha256":"766366dadb45bd2c882f141f0f2a9b5ceaee12b86073dc8fb4e771667ee672a0","size":88442416,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.100-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312519,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.103","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"50af338321766b2340778c3ade3277056b990a585433087d2689f1e7f19e071b","size":77837574,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.103-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.18 Microsoft.NETCore.App 2.1.18","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.18)","dotnet-hostfxr-2.1 (>= 2.1.18)"],"sha256":"3a6b3782770d7d3fabe90fef9c8151001aa568b1bfb793c2303a25ba1829ac7e","size":20639348,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.18-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1eea1eb871da3df8131c404dcba26ccddccfc4d4234384a7fdb38ce336002881","size":157251308,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5390-1.deb"},{"package":"microsoft-r-open-mro-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":149532,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["libxt6","libsm6","libpango1.0-0","libgomp1","curl","less","bash"],"sha256":"f28affd66e2c85d414464d381f3da6bd6356bd1f79f216ef519e5da0a4062d6b","size":73944196,"filename":"pool/main/m/microsoft-r-open-mro-3.5.2/microsoft-r-open-mro-3.5.2.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11-1)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"2bd241b5521b86d0c93df426f0af0f5c7bddec66b85df34871a1963897e845c6","size":99750,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11-1_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"7a7c760329044684e0614f9129037509e391f1457ca80c3b5a9df87d25d52400","size":2568218,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.1-x64.deb"},{"package":"powershell","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e764b26ba87196e78dec20665e166eee536d117deb91562a6e4ccf75cc1b6e8","size":69434548,"filename":"pool/main/p/powershell/powershell_7.2.4-1.deb_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0)","selinux-utils","selinux-policy-default"],"sha256":"8f8cae83fe053cdebc4737e3ae887e4a8334d35764612885b4dd07f0f7041add","size":10086,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014460002_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126471,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c7ddefac0e44b0b275bac572727e239c96f9a84b894890e825fb29b858cbf2f","size":47428934,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.7-1.deb_amd64.deb"},{"package":"moby-compose","version":"2.3.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":26804,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f4da1b4c0d9082ecc1471e6d9243723483a066569edf36dfd28af303d7b07031","size":6625288,"filename":"pool/main/m/moby-compose/moby-compose_2.3.3+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"35a10bdc0d07802cffd112d95efef37dc653defda6a62d85b490c72fc867b5e1","size":417742,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019900001_amd64.deb"},{"package":"dotnet-host","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f8fb5cd37c41b554e27f284d14904e2850017d5c8138335a961a3318e50cb1ab","size":32518,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.30-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"660b10f8ed6a4fdac26ce2d6a48f523b4f5a9c6f455250a8b4611593b822dc9e","size":1306240,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.1)","libc6"],"sha256":"982c3fca33c304b24d9cb78313aecb076a8a9182a17b8fbd506a3ce2cc1a2cce","size":142044,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.1-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"bee459e34ba71863e88d8ea956848c9359d66b911cf091de58024cba0257e043","size":2568242,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.1","architecture":"amd64","section":"default","priority":"extra","installed_size":16545,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"7712196b2dae76094096548322b5c4fab3d6925e19953cb76fc231aa5147e058","size":7776822,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.1-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71237,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.32 Microsoft.NETCore.App 3.1.32","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.32)","dotnet-runtime-deps-3.1 (>= 3.1.32)"],"sha256":"8f8b6409628fc252fa9ced4e4cc0e1d64cbdb4e383f689a146e1e215e5bb6aa6","size":21871538,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.32-x64.deb"},{"package":"dotnet-host","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7ce61ee5404f2ac55d834c1412267cc1eb7b6abab41572100c26b873e6a993ac","size":57210,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.4-x64.deb"},{"package":"mssql-zulu-jre-8","version":"8.48.0.50-1","architecture":"amd64","section":"java","priority":"optional","installed_size":109129,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"d4df30998acbc51019ee092032bb30d29a1ebc70398910e2a65c1b55e2e64fde","size":43720834,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.48.0.50-1_amd64.deb"},{"package":"mdatp","version":"101.39.98","architecture":"amd64","section":"devel","priority":"optional","installed_size":156517,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"66a205cdcfd0101d2ffb87dd2ab98a2c4d910e060d90f05739219ac8f2824dd8","size":45789778,"filename":"pool/main/m/mdatp/mdatp_101.39.98.amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.4","homepage":"https://github.com/dotnet/core","sha256":"451a6f449278670d33b5a24b68fb512968349936ec04b45109d2b35a172bcf05","size":2568714,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.4-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a20d656894bb7709356e3914b6aa1410b869fc97b1adc5a7a1af5b82cfd4eba1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.13-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.6-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324300,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"367323e32388113e6f9603cb65de9c117f07aa929df044670524b0df9db2e2fd","size":192107296,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.6-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337383,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.414","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e7a6f337270074619018295570ecc0d719a77b2882927da9f5d2b5052f82f198","size":86810418,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.414-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6b0da9bb00c6da874913294ba6880d7fb8b6e2d4a80be638923e0c5adb3bcfc","size":154935580,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5174-1.deb"},{"package":"aziot-edge","version":"1.2.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"df6f7dc27e8ad8aa58995e30418f474147070d05642b6830738a3c66152d2427","size":5774464,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.10-1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"7a3a9f68428fcb6c8180e3699c0fad11282903678efdfa8f878a0d9ec5465436","size":263392,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.11.1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"a986a11ed09e7b057600954e9c0daa588ef399cab2e27b8293f291129926989d","size":2123090,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.15 Microsoft.NETCore.App 5.0.15","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.15)","dotnet-hostfxr-5.0 (>= 5.0.15)"],"sha256":"0a5bebe1c956be75253c57d1b4061c4be04ed1200e8f98e5a502069fc2dfb2a6","size":21955700,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.15-x64.deb"},{"package":"sysmonforlinux","version":"1.0.2","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"7dbc4dafaa9534539f584f321c360b827cdfca79130804e64d7b86e421881577","size":231844,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.2-1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.1~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"0b6f2e929b98ba75d4ab081ff55dee289c2e861be049a8fea5e1c3a8a9a29388","size":1648696,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.1_public_preview_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d317dd44e2ed1fcd365fef02a48beae0284729e16951504a2be9ab0212e747b5","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.10-x64.deb"},{"package":"blobfuse","version":"1.4.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":34746,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"70e465013b53f7363f3a95a4f4b6ce2918d453aedd71c0f9cea6691b8e2f2642","size":10093684,"filename":"pool/main/b/blobfuse/blobfuse-1.4.5-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.318-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.318","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"f02764143bd8a171bc1120364900df226c903e53dfd351c8e45a5d7b1bec2653","size":85272970,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.318-1_amd64.deb"},{"package":"moby-compose","version":"2.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25772,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"80d0a6b4ffbd8ded5acbdcdb6d833c3b5275bf0b2718fdf2740908c3078cdb30","size":6512336,"filename":"pool/main/m/moby-compose/moby-compose_2.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.6.23+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125899,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"347e5bd7c6c052a22c54b7a2a8cd22301194075b2b7dfc374fd4188ed5feed78","size":31588386,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.23+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.11","homepage":"https://github.com/dotnet/core","sha256":"2acae1a747ca63f8b74f51b8b573e614e9bb7b4ef1697b26636f270a8b427a6f","size":3399076,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.11-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186658,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"d285189dbce539d9a85a771ed36966bf65f2447b8618d57d2932d0ee9297726a","size":46877526,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.302-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo"],"sha256":"3ca69b2c419c00ca6df523e2ef38b856c74bc6f9613ee013d9d752b10fe0ba88","size":249808,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.0.1.deb"},{"package":"azcmagent","version":"0.8.20139.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"51b3a82dd0b1f004ab3cc1dc5ceeef7b2fdde327df30966cee3e4db9779a45fa","size":34176982,"filename":"pool/main/a/azcmagent/azcmagent_0.8.20139.001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.200","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"dc711bf42291ea51b2305419bc53758125cff21078cd8191df121bf862d40b9f","size":91798318,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.200-x64.deb"},{"package":"mystikos","version":"0.10.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"31dafd89871ba16015ff8e55d16bcb6a8fc636d0fefb6699339f6facb36e52c1","size":5305344,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.10.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.4)"],"sha256":"92aa3d15a9f802c45b2845a99397eee7e8a3311e6464e6f45753a002e9b06e16","size":1515026,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.4-x64.deb"},{"package":"msodbcsql18","version":"18.3.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ae8eea58236e46c3f4eae05823cf7f0531ac58f12d90bc24245830b847c052ee","size":755938,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.2.1-1_amd64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":107145,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"51815cf4be4171c2c244f9516db0ceb8cf9f1788f4e8b22bf4c20f8bce36008f","size":26317044,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u2_amd64.deb"},{"package":"aziot-edge","version":"1.4.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17752,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.2-1)","sed"],"sha256":"d793ab78971a15050db8b6e5959bfd995867c4ded3095e5460ac054bf0d2be55","size":4230816,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.8-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350085,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.110","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"37f9bf12b98e288c114bc919c706a0ff8c72cbb4b8ced055322b53759d662f5b","size":90674390,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.110-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314323,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.118","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"c069d7068aa2c3352bedd73ee48d47deae79557bb67cd7a98f079534c067d736","size":78868818,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.118-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.24 Microsoft.NETCore.App 3.1.24","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.24)","dotnet-runtime-deps-3.1 (>= 3.1.24)"],"sha256":"f6c86e04d09923cc76aef4dddd416ae21e18783e6b9ad31ec366fe00841a05e6","size":21856944,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.24-x64.deb"},{"package":"moby-compose","version":"2.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43496,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"e5481dca839f63b8d79979974b28b106479d18a0a39aa7e492b29a5e020e67e1","size":9568480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.3971-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0dd2bc7155228abe77c3f1b9ef7f991b7198843ccaa63e2f6ce3051a09be7d0","size":134500288,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.3971-1.deb"},{"package":"azure-functions-core-tools","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"58cdf7f1c923f551bd8304f09314a0a196343f61a771eef04e3f09b62a203fe5","size":165959932,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2855-1.deb"},{"package":"msodbcsql17","version":"17.7.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"dfcb958f3625dca439bee14c2f5f91aba53bf137ab1f53c3945fd0952bf8dfd0","size":744700,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.2.1-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.23 Microsoft.NETCore.App 2.1.23","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.23)","dotnet-hostfxr-2.1 (>= 2.1.23)"],"sha256":"7252fd61a461bf62f31e57ec62b37f76ac51086b1d543fb489d1c1d994a0bcfd","size":20607706,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.314-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.314","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"7b307e2bbcedb6145bc516bdc914a2523bbd776f85729396b81094c083b32dd7","size":85192950,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.314-x64.deb"},{"package":"azureauth","version":"0.8.1-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74124,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"61784632cbfe34e1c2d28320bf0aa3111f989e9a67a5dffdaf26182d578e4c33","size":24071902,"filename":"pool/main/a/azureauth/azureauth_0.8.1-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.1.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"9dc54caf038da57759b80a8ad46f1d783dc98f9039bfa307613d962d29c1c19f","size":594218,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.0-0_amd64.deb"},{"package":"azcmagent","version":"1.19.01980.190","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"19af5c09ca4704150f53a3d07db6afaeb8bb2aff34e64cafbe128406d502c20b","size":52454744,"filename":"pool/main/a/azcmagent/azcmagent_1.19.01980.190_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227348,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"d04ec77548f0bf426187edce1505275125a002ba3bf1224096c34fe7aa0ac372","size":58709818,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.301-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":168859,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a54899f099a74cb76cab9695d4a21a604007ff3f7486c05076cbec64b8b7f777","size":66703322,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.19 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.19)","libc6"],"sha256":"0319d7c4e2bb840f95473dcad32d7a237f644a825eac7f342c83e3755b6ea398","size":143604,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.19-x64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120364,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ad64c596e281147c50337ea5b7442f9bfba41d8d002d7309d6a0b1aa2ea91cc1","size":25980172,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-ubuntu20.04u2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5191940c8b6f64839b27f278880f403af9d5ec7c3d75b82cb7a5ca7047f26d99","size":124467492,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4704-1.deb"},{"package":"moby-engine","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117358,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a635857737c5e0393cbc06c4ee7051115bc828c37d7b22e3cf58f89722adbc1b","size":24773176,"filename":"pool/main/m/moby-engine/moby-engine_20.10.5+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"9a30ce389879cf3a8430103b8924c296e1d843705ed0378598da2dd5ee22928a","size":415372,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.015950001_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ee828c1bdfa48ecab95cb9625f11dbe6e3333d89c47edced6c6d85faff6fb2e6","size":157321128,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5441-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.810-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.810","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"85fa7f894ed08f386b9c18b04cb8de202cf22f68307435c784f004131c989aae","size":91737224,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.810-x64.deb"},{"package":"open-enclave","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":115291,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"85c66ff7801de3a21fae1788a1eebe1c3fcdb617127d5336c91b7ed1b08f4eaf","size":31560056,"filename":"pool/main/o/open-enclave/open-enclave_0.17.6_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-2","architecture":"amd64","section":"java","priority":"optional","installed_size":317895,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f7dd1d44a24e2a88a71847a864c6f39e32154f2a7703c30a1f2d1002566dd411","size":166897458,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.416","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"0c02d6340293058c7af92f3821702e58e7fd340276441b793d9ae44ffeb22f1c","size":86825034,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.416-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.13)"],"sha256":"3085c74701bfe21be9f9d57490721292c0ee466d142f3827e41d8759f386f217","size":6085472,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.13-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2d08ac3f8822a62d2ec5384bed68abfe55a52199c0960a43793a8f92c712ab84","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.5)","libc6"],"sha256":"946b46de39d9157ed341f4df85709543211f8baacfc94604a8a24e960250f87a","size":142074,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c203b2a5770aea2879e64d542de87dc6a705988f8aad5bae6a759f03eab6fe96","size":69689350,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql18","version":"18.1.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ecdc984603e67d6563dcf800dd6bc4705e058a4306354998f1e0caff9753ab95","size":751978,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2553b0547714f3a938ad7ff192a7948d24d509bb53c65aa582ea7adcb57fb401","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.25-ubuntu.14.04-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.10.0~beta.1)"],"sha256":"c4271a9f38e1851357258aa8c8c892be7d2b3bd4c7fe2ceae3b134ac16c1257f","size":149320,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"apt-transport-https-sas","version":"0.9-6","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"bdbf549b23f8446ae0e288db668d93670c9143765f03a7f8f4b8f087a576dc6d","size":12522,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-6_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc95+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19709,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"faf73d18c091fd1f2fc393439dafbe984f511e832331446150739c5e0da2e2b3","size":6550948,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc95+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"a28e554c180550b4d6daa763f55ef2121ea8fdd70d2da02dcc86ff7e20a70572","size":3517574,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.13-x64.deb"},{"package":"mdatp","version":"101.12.99","architecture":"amd64","section":"devel","priority":"optional","installed_size":152179,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"8751b14a8a2db98b28dcdc31cd01194ddd0910219d8204ec3471ebb7e02397fc","size":43935326,"filename":"pool/main/m/mdatp/mdatp_101.12.99.amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a8f75b0c7ee0cc1d5701ef4f2ab3c561a8d0cdc0998769794b122e6f9825fa49","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.10-1_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc94+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19694,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"2abba68b1f39a4cc5af9d7afcd8fcf48b2ef5d7cbb0b13f8c599b5eec018ec2b","size":6548584,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc94+azure-1_amd64.deb"},{"package":"azcmagent","version":"1.8.21189.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"f034191ed4aaf3ba0a8fccecf36b5813f5bf9406689e15ba9abd177e79d5dbf4","size":49532928,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21189.003_amd64.deb"},{"package":"dotnet-host","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2afa31bcf3bac0b866d3f215b71c6d56e885a9996b2c2729621222466986384d","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.5-x64.deb"},{"package":"moby-compose","version":"2.14.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ad091134300a157bfbc10ab1471e9e5a13b8670c925294a6d2077c4bb2ed9b08","size":9652610,"filename":"pool/main/m/moby-compose/moby-compose_2.14.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5030-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6486ba6279fa7e1402a9a57eb2fb5623513807378a83418e83c68d89ef14e291","size":156016092,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5030-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":748,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"b0e49d1b6dee1d25d2d897d8ca9dc15e3d5c1b8826f6a7e2703acd8585119397","size":113312,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.15.1~beta.1-Linux.deb"},{"package":"powershell","version":"7.1.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174285,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7435b5cdd8cbedeee396072b495b44067166674e7c40a9ee844a519c6223e482","size":68282782,"filename":"pool/main/p/powershell/powershell_7.1.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70841,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.12)","dotnet-hostfxr-7.0 (>= 7.0.12)"],"sha256":"73ed33d0f0b7f6bbbc0aa1ce299eb90eb8785186be7a8e480fc06ebd18127b3b","size":23211158,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.8)"],"sha256":"f14238d2ea7dc37d5d7c947e950fffa64e4183dcd1a88fcafdf1543cc0e21b43","size":1522110,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.611-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237134,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.611","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"3ff94801b2a6448875511986c1a7613f41387880b22a26b6433607debb4e8f0f","size":91354158,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.611-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.16)"],"sha256":"38af5c963fef967c1ff4e88a45df47e6617d05fa2814f668ce1a11350696968b","size":6085708,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.9","homepage":"https://github.com/dotnet/core","sha256":"356b86603caa1e26f2cb02e54eddd8af3a19a6cf92fc08a5f0641a3cc0332297","size":42680,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.9-x64.deb"},{"package":"azapi2azurerm","version":"0.6.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20424,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"107a2e822c62d94cd14b9b4402a135c634c1dbaac0e6e70b92803775ea27a671","size":6691356,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.6.0-1-amd64.deb"},{"package":"mdatp","version":"101.47.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":186587,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8014568ab9c8c946d280d1014b86df1165b69191239a7b79e0e0c7dace237d6d","size":54826224,"filename":"pool/main/m/mdatp/mdatp_101.47.76.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f8908ba61bfe2c80198f5e68282f02d7150a5ae4aa411444eb21ae4e8e1af71e","size":157337028,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5441-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.22 Microsoft.NETCore.App 2.1.22","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.22)","dotnet-hostfxr-2.1 (>= 2.1.22)"],"sha256":"a5d6c5497fa95d2b8d12eec33d3ed0fd43ce3ddb325ee59b273c090d8bbdfc3c","size":20601560,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.22-x64.deb"},{"package":"osconfig","version":"1.0.4.2022100104","architecture":"amd64","section":"devel","priority":"optional","installed_size":5432,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"8818ebf37cc67a05af3e1c569cbd145c26b0a44719d0c115dd62d2a4cc835023","size":1911656,"filename":"pool/main/o/osconfig/osconfig_1.0.4.2022100104_focal_x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.10)","libc6"],"sha256":"2f96001b5b7063d29a430d368cb7dba492ebd67dab5406a11c9408db4581c1a6","size":142342,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.10-x64.deb"},{"package":"aztfy","version":"0.10.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"45ea0fb07e1c2d5fc8cab233e2b530ffc05fc0865f1fd810fc49597b3ee0c12a","size":9404196,"filename":"pool/main/a/aztfy/aztfy-0.10.0-1-amd64.deb"},{"package":"azureauth","version":"0.8.2-2","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"ab456b47856de52483a9d035c7f96d0afb724d43edd6fcbf5fa53c7e3ff1587f","size":24111110,"filename":"pool/main/a/azureauth/azureauth_0.8.2-2_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.14)"],"sha256":"a183e3dd976b5283ee52acc4548cebfb852f0960f34f39a5a31ec2d6a0a0e0f0","size":6085076,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.14-x64.deb"},{"package":"edge-config-tool","version":"2.0.0","architecture":"amd64","maintainer":"Azure Percept ","description":"Microsoft Azure IoT Edge Configuration Tool","sha256":"b9e1aea2e07727fac26d45d8d5c92aafe4bd3ff63e13e875ebfaa9b14efaffc2","size":88470,"filename":"pool/main/e/edge-config-tool/edge-config-tool_2.0.0_amd64.deb"},{"package":"azcmagent","version":"1.7.21162.005","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"2a0e3cc4b517beabc2c1a8f7eb5b5bce2ed7961acc7aea7b148a12913daf4a33","size":18406364,"filename":"pool/main/a/azcmagent/azcmagent_1.7.21162.005_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"68702812eed9cbd0bdb45d04e36f33b633a09452aa39b105d974093c9177f820","size":417398,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019630001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.4-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18782,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"8db6803b985bfeeb997dbb716a9e1c6230425b0b71b59871d0ee103998e6ff01","size":4031196,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.4-1_amd64.deb"},{"package":"libmsquic","version":"2.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":16751,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"f436ce58f5d47869aefb256635b97e1b95872dba8ace6c8991928f4d8a88e782","size":4348660,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.0_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"184a9fc7cd8c4247fc5f7ea44156d79d9b6441709d2aec4a83e4f7b17b8ef48b","size":1000134,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.21)"],"sha256":"40b63967efb23ab19fb1a863c2cfb47dded87ad0eef2b9afc5c37c6876672fad","size":5772728,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.21-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"5a76b63c5cd8979e182dd7f9faea1ac1e2ce15845fabb1068e65ddb974f4918b","size":2122060,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.19-x64.deb"},{"package":"mdatp","version":"101.45.00","architecture":"amd64","section":"devel","priority":"optional","installed_size":161663,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"e6bf6ec6dee9242a8608578de115b0480159a317dc8c58950a476262014b51d2","size":46688308,"filename":"pool/main/m/mdatp/mdatp_101.45.00.amd64.deb"},{"package":"powershell","version":"7.1.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171528,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6f70084d2a2cdc2dde760b18dd716a5941452248d2869fe9de6a65fedbfe8ca8","size":67057604,"filename":"pool/main/p/powershell/powershell_7.1.6-1.ubuntu.20.04_amd64.deb"},{"package":"microsoft-mlserver-config-rserve-9.3.0","version":"9.3.0.2606","architecture":"amd64","section":"devel","priority":"optional","installed_size":46,"maintainer":"revobuil@microsoft.com","description":"Microsoft Machine Learning Server","depends":["microsoft-mlserver-packages-r-9.3.0"],"sha256":"d05c783069979e3d057e4faf981f741aaa4ab430a11fe844aaa493ce29f4240e","size":5756,"filename":"pool/main/m/microsoft-mlserver-config-rserve-9.3.0/microsoft-mlserver-config-rserve-9.3.0.deb"},{"package":"msopenjdk-17","version":"17.0.5-1","architecture":"amd64","section":"java","priority":"extra","installed_size":324215,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"c58dbc06612034c0478881304b9b96ebee23fe0212dbf38e9023c5d7087d4a85","size":192096976,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.5-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"87ccdb4c2304e2c1f8e4cd0cf00d8df90be527c08a2c9e518a9ecda2eed8ae31","size":221294856,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4502-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7ab2543933ac5e546e391128a8629af650e0d9b380a646678a8032766871bd8e","size":125645188,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4785-1.deb"},{"package":"dotnet-host","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"5c50ea7d4464f1079333901e28fd06dfbfe87db511b0b912dab724571b3b7e52","size":55720,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.0-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":755,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"8b86e75809470fa5fd5c89327ed82d0fe2e0cae0b2e71c7bd2ff8e8b5f12d1a3","size":114218,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186656,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"4b3652426ead7c0b6c873818b1d7c83dc88095ea104324f787725eaa338b2b0f","size":46591862,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.301-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.214-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.214","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"563de21936ea0c86c5602a84c88840ea8eab358e7b9aa66248fe4525199fccbc","size":57622258,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.214-x64.deb"},{"package":"dotnet-host","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6548914c6872fa051b95a87c8f624313a8e51c72729eb3f27348b20140c3f02a","size":57370,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.11-1_amd64.deb"},{"package":"moby-engine","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a93df7ad782a3041734431c3fc5028523b086d179fb13f5fd70e898bd01ab6c0","size":21178752,"filename":"pool/main/m/moby-engine/moby-engine_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8808b8db255e6d57ca8335fb14328ff99f5da45443901f2801e15661afdb33be","size":32430,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.29-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.410","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"c3ef47c6707d7087e0208368b669d38069bbfde3d3b3cee484d4482c659cabb5","size":48098966,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.410-x64.deb"},{"package":"dotnet-host","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.32","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3547d638fbd423815cdfc08f98ef9d4a1c9e51ad854e379b68af8777218c4524","size":32436,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7e57c8b75f6832402709e33190c0ed61680a1c253bcfb826726959f7763efa7c","size":9660698,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0c873e3bed6344099b81003745cae7a1707fbf7249b38922277499966e0f0496","size":362460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.1.2.deb"},{"package":"powershell","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"58e86f8f379bfacb417e617350b16696b134f50c4572ce7a56ab308cb9d243fe","size":68377064,"filename":"pool/main/p/powershell/powershell_7.2.16-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124622,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0b7eb4ebeb1d19f8d448597fe54b55f3e7496da06ecf2470fe18dd3c616d250e","size":46623124,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.6-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19874,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.12)"],"sha256":"80cfc243c528fabf035eb00208103895dc9550f8659bc62aec4538a48cec20e4","size":6611238,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.12-x64.deb"},{"package":"libmsquic","version":"2.1.7","architecture":"amd64","section":"default","priority":"optional","installed_size":16102,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"150478df2bfe05e26dc154d0144eb4c65c911c285a1bf76e01dea612bdef6586","size":4126202,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.7_amd64.deb"},{"package":"powershell-lts","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"240c3e9e1e8b7d6eb3b54297236c5aea5ede0a28b4cb37701e26526ac1f3a037","size":69430114,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.4-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.14 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.14)","libc6"],"sha256":"cf2bad79c72e6b40346ed586ed6cc248f4af1308e57b54e14cc115dfb387b8b2","size":140364,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.14-x64.deb"},{"package":"msopenjdk-17","version":"17.0.2+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323435,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"2133d1b51f9fae2d178cbb97c94b9eb567655a36d8b8ef433afaa3dd5064c018","size":191825508,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.2+8-LTS-1_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21358,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.11)"],"sha256":"e6514c9bdc094e35047f7f3c8260ffc0b12261119937fa4831e0b344ddf5260e","size":7061290,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.101","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.1)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.1)"],"sha256":"76e7d2644d91fed7dcbdc4cf048d6778f5b95646e91b711af9ddd92fd0f8e36c","size":55355152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.101-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.23)"],"sha256":"d94536b5d048ce4956e9003bb999abaa5269b572cebb85b926da3a2f9732aed0","size":6620078,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.11-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"74f632b82584c30ff621280c7fc90143cc5afad265bfd6dc85f82ad6d204cbf9","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.11-1_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.9.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"462eb22fe531e7c4aa4863c604bd3b8c521700aec4ccaaed4e462d40724cfa53","size":2588272,"filename":"pool/main/s/scx/scx-1.6.9-2.universal.x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"5c811033834fdff942210dfbf65d16eea2fe2f97d334d572cc02f3f2e43685b8","size":3520848,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.16-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31132,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"4b3447d53557aa91e5522b47cc1e65f53fc34ca7e89ac6e6e2d3de8c9a26a248","size":2567740,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.0-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3e35f04acb96f6139ef831228aa7572b9ecd7504c5a01c0645b7ed6a415e3d9a","size":227724024,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4753-1.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"9a8231a5d1334d93857adcc7ac28d9313ee10a065f8ba4f03e2f8f6f90ff392d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.13-x64.deb"},{"package":"moby-engine","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117354,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6bc4d9ea1c16030c4525c43a6fc640ea8f0e1ad511e203430ec8eb7be0cb6985","size":24759692,"filename":"pool/main/m/moby-engine/moby-engine_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68367,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.0)","dotnet-runtime-deps-6.0 (>= 6.0.0)"],"sha256":"8338aa43b86960efc2fa5018f6ee818ba75bdf0122578ac54511a626cc9c5a28","size":22849194,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.0-x64.deb"},{"package":"open-enclave","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":122136,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"b567f4e195da6b9ca229d0bfe29bd73cacb44707d4e082cefa1cedef06785fa5","size":33277940,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.0_amd64.deb"},{"package":"moby-containerd","version":"1.4.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138460,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"86fbf26537a44a35a2b14b035d115a68d633a7091edb598cc520c0126b208bae","size":30825808,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.3+azure-1_amd64.deb"},{"package":"mdatp","version":"101.23072.0021","architecture":"amd64","section":"devel","priority":"optional","installed_size":386508,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"45c0dd0dc355044c38629a7f903c994669a523a1ce93cddc66e603937c1dae70","size":133254902,"filename":"pool/main/m/mdatp/mdatp_101.23072.0021.amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.1","homepage":"https://github.com/dotnet/core","sha256":"641e499e02e79fda23cbc679116bb24abfd355dcf306e1ebcbe92ac401c2664d","size":3409646,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.6","homepage":"https://github.com/dotnet/core","sha256":"808c3c3b72039f378c84fdc9b2bd0f571517478368bd2b521ed2a236f99fe7d5","size":42496,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.6-x64.deb"},{"package":"blobfuse","version":"1.3.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":32123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"5593cf9114efe4a7032610e191523c8db16f446adbe523d483656e09cf791de5","size":9249408,"filename":"pool/main/b/blobfuse/blobfuse-1.3.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68381,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.2)","dotnet-runtime-deps-6.0 (>= 6.0.2)"],"sha256":"422ffd79ba0324eed88fe3634f69c1025d978f54738d98aeae7d84e364ce83c1","size":22859474,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c50a6d720eb317297a5915f1246f50239f4aaa98208436cbde53f5c7a9d29110","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.15-x64.deb"},{"package":"iotedge","version":"1.1.15-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22418,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.15-1)","sed"],"sha256":"6caaacc8ed1cbf0bdd734527b9bf949efb242468a97d0827bbcf6ed2baf29114","size":5367528,"filename":"pool/main/i/iotedge/iotedge_1.1.15-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.9.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4812,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a5ba699e516821411f4ef12703b393e7242fca10df69109709dac5e8f7661a9f","size":1881492,"filename":"pool/main/o/omi/omi-1.6.9-1.ssl_110.ulinux.x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08fefd2a57d32afe7284f2d7f0b8696d2fa97ab5196a8261a9c51653be5830a0","size":156082204,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5095-1.deb"},{"package":"powershell","version":"7.2.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188363,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9fcde25bbd7f537213e8ae34a9803c1ded59cfe1d41701816c424f9b33fd2bb3","size":69679588,"filename":"pool/main/p/powershell/powershell_7.2.0-1.deb_amd64.deb"},{"package":"sysinternalsebpf","version":"1.0.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"be45d24415c437a7ad4f629cd228981daa3cfd1cf71f92849c38291cb1b191f6","size":402112,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.0-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138440,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c28c4584af15cb55dcaeb2d0977a6da4375ef4e9c652a7fa8d21fac52b08e462","size":30819268,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.816-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241023,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.816","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"3ee8c7520affdb83e690e8e1d1a6fca6651da7655f6edd3144c2b81c9c846ecc","size":91732988,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.816-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1af932e9851bd3bc2ea9e6e750816ede6d2f1062afb6fbb8c194a35a7738b3b1","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.28-x64.deb"},{"package":"moby-engine","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":98026,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e2e90f83c1e733d3948630127dc9e4d8a7dc9824f8cf62cd9a9dd45f12a9e5cd","size":21176712,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-3_amd64.deb"},{"package":"blobfuse","version":"1.3.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":31955,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"d309e4663e49150bd8af852c864b05492d15a9e3d6fbbba21a8bd296ce9d1d87","size":9222958,"filename":"pool/main/b/blobfuse/blobfuse-1.3.2-Linux.deb"},{"package":"azcmagent","version":"1.0.20259.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"22e4e22aa2fe9324d65634f103ec360509aee682aa283246416959147c2ba3bf","size":18201370,"filename":"pool/main/a/azcmagent/azcmagent_1.0.20259.009_amd64.deb"},{"package":"libmsquic","version":"2.1.1","architecture":"amd64","section":"default","priority":"extra","installed_size":22575,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"66b934f9eb658a8f430e675ada16d16edd6789f57347a56f7ac9ea72564ca8ce","size":6406602,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.1_amd64.deb"},{"package":"aziot-edge","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"1314559971d904a3b642bd0541b489783e939c13f27f1f05b078a1c3b3dd8d83","size":4203924,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.3-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.3","homepage":"https://github.com/dotnet/core","sha256":"5247aa739c901dd9f78bf45b8f0d8c763aebcea109c9e83ce4b172c6d6c66a13","size":3398704,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.3-x64.deb"},{"package":"moby-compose","version":"2.2.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25452,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5bb4f1ff748a6aa0b4478ed7c0391a035d1565b404a913645d9cb5dcdc8de5c3","size":6319144,"filename":"pool/main/m/moby-compose/moby-compose_2.2.2+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"dff4c1804439d9c08d8dd31627040ea654765903eeb4295393585fd9e0e30b56","size":150108,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.19)","libc6"],"sha256":"cee694dccc54a8260d4971e39ff1da2b32ab2e15f77c21792625f0b287ba9f27","size":142356,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.19-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"86580698443180f77b1f3e550c84af5ce5add1f836bbab794785b1c2102e0be5","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.25-x64.deb"},{"package":"az-dcap-client","version":"1.11","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8ececbf101e9312cf3c57b619f0a7045138972ee2da54cdc48258dcbbd9b7b23","size":152336,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11_amd64.deb"},{"package":"moby-buildx","version":"0.10.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"4f18c8ea6d49049ba56dbb3ba02c57e78949c717d9fd8ef334fc1632ec96f114","size":25558318,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.24 Microsoft.NETCore.App 2.1.24","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.24)","dotnet-hostfxr-2.1 (>= 2.1.24)"],"sha256":"ff9b77a9ca019abd68854a564d5529b633c2e7254efa58b7754db1418985a695","size":20327858,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.24-x64.deb"},{"package":"moby-engine","version":"19.03.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1a0463b96c01047c079912a3fd23fc11294a3751549cc3318c198e187722599b","size":22479484,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-2_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19830,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.1)"],"sha256":"30df06bcb1ac581ecfd07a2b64fe45d2252c7eae876549e166aa1530864fd438","size":6596852,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.1-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.13)"],"sha256":"7a8bac3d07539a56ad0cb775e996da6fdd0f6ba1bb21924d7853a1f28e433ec7","size":1514874,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"mssql-tools","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"7ec6c85e184cc37ab241d01b560d99761ef641df436b065a5e195b65e017438f","size":212146,"filename":"pool/main/m/mssql-tools/mssql-tools_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.0","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"acbe521b53360a4f803e8bfc50ef0644415da7f2f7c81feb83ff5f2eb679f457","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.0-x64.deb"},{"package":"aziot-identity-service","version":"1.4.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18919,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"f8ac43250490dd18b4f9ccdd72a7f1c10a295e9336d9ef98d39f0dd4d9542098","size":4128286,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.6-1_amd64.deb"},{"package":"mystikos","version":"0.9.1","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"53a143496602981ccd0202be14766901ea0fef422e6ad6ba6f3765ff08b1ab89","size":4443962,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.1-x86_64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d6a34968d174165c3ac0bb68607b2ab0bf248e574585443971811e15ad1229c7","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.6-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"8c79c372fc677a9acf2acdb8b216daeadc2ac10b118d5643ec2ce22eb8d28089","size":79758318,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.0_amd64.deb"},{"package":"open-enclave","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":113932,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"940bcf829445bea407b05b7dece0991f89f26b0045696798b9c509b2bb2054a9","size":31147748,"filename":"pool/main/o/open-enclave/open-enclave_0.17.5_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175201,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.108","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"7fadaca90a5586bcf86c5717c6476be0194d9926343f6373ebfd58f91ee52be2","size":43451478,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.108-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17502,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.16)"],"sha256":"1f956f7f3109b34b6fea001237ae0496400aaadcc2db9128f036d0d32ed3ae7c","size":5773784,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.16-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.205-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.205","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"ac5d3a001fa718abb9d1095c6b5d54740d9ed873f73f30d17476e6e11ce405db","size":57015322,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.205-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.12","homepage":"https://github.com/dotnet/core","sha256":"42ecb191e3214e712f0c326642bab72ea72128a447d22f038a55286df7d1dda3","size":42736,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.12-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"37bc0cdb694b55c1ea99e4c6b92f136e7cf603fcaddebec76d11e44add41146c","size":124508616,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4736-1.deb"},{"package":"moby-containerd","version":"1.3.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126911,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"490fcb1ec50690bbb88799133fd2cae5dba6d5cb60e2edbfb6a47153b6d7da56","size":27671252,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.7+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117258,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8568f934682972051715d41d9229b8472ad4e80fa15f2ccdc22fcf22010a44c8","size":24749920,"filename":"pool/main/m/moby-engine/moby-engine_20.10.3+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"cac57f3b16afc8e2659455245b67ded3cfee570654f4dcf56f406ac93d10998d","size":155251712,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2796-1.deb"},{"package":"dotnet-host","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c3dd5069cafe3151cfe1cf170a646d3fe812a492224d423f2891d8e86913981e","size":55698,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.1-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":749,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"31a07d73e85448f222de5b7440ece1c5b4ef5b7f5d3ce7eada6a9aae0fafcbe1","size":113348,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.8 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.8)","libc6"],"sha256":"d11445de01b19806a245daf2e6708e413de8fc3a042b2432bfebf0ff04491684","size":140268,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.8-x64.deb"},{"package":"mde-netfilter-src","version":"1.0.0-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"7858cb2a6c43f44417e8d95bb9194bc98810460e516ebccdea5825ec71bab287","size":13560,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_1.0.0-2.amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.818-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240998,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.818","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"3b29d87b6ee0491de22235bccfa4ab5b9ee14cdf758b8d96c3a2185783faf65b","size":91722984,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.818-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350115,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.113","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"223e3af61704a49c26518832cfe04260c23017fd06177dcda24d83495c39012e","size":90709030,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.113-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.18","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8ffa1b39d77d6a94bd176906fb800283f6234546933df852f72179bebb7701d4","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.18-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.26 Microsoft.NETCore.App 2.1.26","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.26)","dotnet-hostfxr-2.1 (>= 2.1.26)"],"sha256":"4e494c2f20e4199b60fc405faac8ea456c2a034fdd53974e1dae30e2038adcf6","size":20322466,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.26-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.310","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"1c58a5fed9617e4c08ca224ebdc1b54a04797be23b10055ebf17ca7221f666e0","size":85091654,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.310-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.8)","libc6"],"sha256":"45c3624776c280739550c606c83185497c31b21acc8f5150e71dfd5996f504a9","size":144354,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.8-x64.deb"},{"package":"dotnet-host","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"09858829de4b32532c7002124ffa9dc5ee892adf755863bba9738d444c5ddea1","size":32884,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19855,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.5)"],"sha256":"7c264f8735dbe110e039125f5bad99ecb950a199abe16d6cd2cb97b07b4975d2","size":6604008,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.5-x64.deb"},{"package":"moby-cli","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59401,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"be80e5722544fab52ca05e7c4152e240aa3f5d7f0673e56d63ea47facc0ec0cd","size":10215796,"filename":"pool/main/m/moby-cli/moby-cli_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.208-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":221997,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.208","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"992200db75615210f8de592bd681f381a30f47bd73a035efd9837aef6c8d615a","size":57283674,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.208-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174793,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6196ba4ebcc16e66d20a6cf31d103898168edd2a32e11b8f79d149a95021bd23","size":68350160,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.2-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.11 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.11)","libc6"],"sha256":"e27faf05b11f71781749b07b0029c760fd61062adeca99112765d853e29e8395","size":121006,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.11-x64.deb"},{"package":"moby-engine","version":"20.10.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117234,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5782d03398d3820b1badffcbd3381c569ad99de24ce6fad57d04ce55cf1b3cd9","size":24737244,"filename":"pool/main/m/moby-engine/moby-engine_20.10.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.612-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237146,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.612","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3116f9bdfc32bf0100c4513962b32b0ab7c1798c678c82e2d41621c75f5f1109","size":90827932,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.612-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d9c1f432f1f4ce8f89a2a2694335dcf219702dd83a81bf05b2ec42731c01950a","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.29-ubuntu.14.04-x64.deb"},{"package":"aztfy","version":"0.8.0","architecture":"amd64","section":"default","priority":"extra","installed_size":42176,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"9de434526c8483d947b511fe42b3df26b38554b0a5f0e46a4988e5699924841a","size":8622710,"filename":"pool/main/a/aztfy/aztfy-0.8.0-1-amd64.deb"},{"package":"azcmagent","version":"1.12.21285.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"b8c0a57450638c73e1182d19744f643c241976aa57da8e35841635deedb7ac65","size":50058362,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21285.002_amd64.deb"},{"package":"blobfuse","version":"1.4.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":34634,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"8dd6af68d3ff2402df0fa9f1b8f489597999b792d9c38b6501676e497a422dc9","size":9918238,"filename":"pool/main/b/blobfuse/blobfuse-1.4.1-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"9eef66bbade60a95b3d7b2c869144893eea2c53e85429060901a8201ab8c9c9e","size":48443896,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.408-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330666,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.300","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"5dcee2d1cea6d4d90cdda4cf70da1b5947f3d798d47b0b477dc4885513afe860","size":84870018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.300-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.32 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.32)","libc6"],"sha256":"fd90563cc5240ec457877dde687e8fa8a9ad27a00c196955578a155d64f06796","size":120802,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.32-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.3)","libc6"],"sha256":"b1538cee2b98d3910e330790382beb315724c3bbd8dd8d59ac272a952128bb94","size":142012,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.3-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"714fa1cedf1983686dcbc9a2701799cf19b039629da67318ecb2275a5a651084","size":3508800,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.5-x64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66620,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ef924dcac53519e9efeba109316bb1914f0d143616e8cbf72f596805b69de47c","size":23649004,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u5","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3aa0bb5a6f547f57449367e4231821f2c5d74d715b970ce3fcd539f7783d5467","size":5742626,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u5_amd64.deb"},{"package":"powershell","version":"7.3.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172238,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"8ec60ee3bd4721f5097f7faf55c1aabf984118821ed78baca70be3612516cc9b","size":69171666,"filename":"pool/main/p/powershell/powershell_7.3.9-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71104,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.9 Microsoft.NETCore.App 3.1.9","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.9)","dotnet-runtime-deps-3.1 (>= 3.1.9)"],"sha256":"ed8a7d2622700881aec4df5bcb8dfbcc03c1871ccb3038bef5e3b30ec9d2a9e2","size":21668374,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.9-x64.deb"},{"package":"unixodbc","version":"2.3.7","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.7)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.7)","libodbc1 (>= 2.3.7)"],"sha256":"3a1ee6341d9319731bbffbae775fd7f455bcd34d97237a82b58a3280a3366f24","size":19572,"filename":"pool/main/u/unixodbc/unixodbc_2.3.7_amd64.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.7)"],"replaces":["unixodbc (<< 2.3.7)"],"sha256":"a5ba3b5fad82f0330a8bf4b5b89fe34420ae9b884e75889d4a0803a455180be6","size":134622,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.7_amd64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"845d2c21326f23d4b1fc2eb3e3731dc0dfe0b93b51af66c99e1013b7b50681b4","size":114288,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11067,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"3c8fc6205fe4da858312a53ed26f0135213d0c59125831e51309e484536801eb","size":3519186,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":113729,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34800a59772281468a27c26289a56095c160a43f56e4e9cf37fb9b1acf04f7b4","size":31089900,"filename":"pool/main/o/open-enclave/open-enclave_0.17.0_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175186,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.111","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"1d89de60a7aecb43b5cbeaf07199809995dba4509ad1b6cbca893bb605a6fbca","size":42912182,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.111-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.15)"],"sha256":"bb6a784b886153a7655c94f81466776b7f2c121d67566bbb6d957a92a8f995cd","size":6611850,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.15-x64.deb"},{"package":"moby-cli","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50209,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5d46cb0b3e8e531fe6b1556d32a9e9dbffdb67b22bc3fe0c2daf446a3d85b3bd","size":9774914,"filename":"pool/main/m/moby-cli/moby-cli_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.8)","libc6"],"sha256":"fd31f75d787c6793c265f8521b647e06ce8b00327798d55607422ad78ad92c6c","size":142306,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.8-x64.deb"},{"package":"dotnet-host","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.19","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"278bed877fa7bc39a69554a244ee6caa905f499e7ad316ecd03c04138e8e65cc","size":55870,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.19-x64.deb"},{"package":"azcmagent","version":"1.29.02286.794","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"a2de8f368efc70d6c0d6de01331560fa3308f579559aa1706a2e2acc678981e0","size":54135290,"filename":"pool/main/a/azcmagent/azcmagent_1.29.02286.794_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"9919b50d49031d858c81a4cfbff7b84c66ed947f702ad7d2f9aace7db8ff9827","size":9764162,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.20","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.20)","dotnet-runtime-deps-6.0 (>= 6.0.20)"],"sha256":"356aef8ceafe55124bae9ad0deb58f3d020884e0edf1e7d6bf5f79f3f565bf7e","size":22931670,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.20-x64.deb"},{"package":"msopenjdk-11","version":"11.0.21-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317689,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"7c153e16c53b1b45b9ad3c94c4dc30e3574cca0eebdb1b69df5ce515db2d4f8a","size":166637290,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b343a98f70e1b5873dfdc5e3e430cb297332d7b151908d8b9a96169f471ec229","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.30-ubuntu.14.04-x64.deb"},{"package":"moby-compose","version":"2.14.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"32663f95c2fb8408df560b915d4b54f2bb654b566064437f685b8ed19a84edee","size":9648794,"filename":"pool/main/m/moby-compose/moby-compose_2.14.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3ab05a7d67163edc77a0d03071534fb3245cab1a754f77c7257726b12a3b94d9","size":20990140,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u3_amd64.deb"},{"package":"powershell-lts","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bf822a5033403c396126818985fee79af163b62bb015603d81400e90ac9e32c7","size":69396358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.2-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.9)"],"sha256":"d7b54dab1e26e0c64c4c5d96e5e49f1448dac7af404e7b2a17a481ffceb4cc08","size":6084140,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17476,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.12)"],"sha256":"e07ab6c36de877eb61fb9cd182d657b7e6a53b762da719ace97181cd481efcd7","size":5773228,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.12-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.26 Microsoft.NETCore.App 3.1.26","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.26)","dotnet-runtime-deps-3.1 (>= 3.1.26)"],"sha256":"af152782c61c6692099936e87411728f533c9c5c435c761f7c94e4af1a5e5b61","size":21806626,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.26-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":61003,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1c97c4538464a3f58e13e6c3f3c3419471b6815bcfc215f3e32c82b8024bb6ff","size":10618136,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-3_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174370,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.112","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"37474633fbd4a915592a311245a2e64679b4d5c8b130c1edd488aabab49576a3","size":44274732,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.112-x64.deb"},{"package":"aziot-edge","version":"1.4.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18312,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.4-1)","sed"],"sha256":"f16c37a6f8550f6f100fcfbec01e3a829f8382472d123fa5279a192511f9ebe1","size":4360864,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.10-1_amd64.deb"},{"package":"aztfexport","version":"0.12.0","architecture":"amd64","section":"default","priority":"optional","installed_size":72408,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"436aa6a7e279bebeafa09d520485ec92bf9336b24dad38f8f226a98a5b1bd0df","size":11732782,"filename":"pool/main/a/aztfexport/aztfexport_0.12.0_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0c7f2d75631bb15d657bad2a6fe7160557fed3f31aa4e8858052bd644b0699e","size":166092780,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3023-1.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"4da5438cdb779ace13629af714b8c1c918939810a4be3cd50f4b7e88ae2f66ea","size":34231376,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u3_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"ec9f9d3a58b953b4c0ae51d23a66ee1f3848089a23b32fc60f4279df5eda1fe7","size":10222,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016890001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350058,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.108","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"df8a89bade0d908f4d57ef6fffb9510e0efeda2350a8a4dc7ce5f57211ac79ce","size":90674394,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.108-x64.deb"},{"package":"azapi2azurerm","version":"1.6.0","architecture":"amd64","section":"default","priority":"optional","installed_size":36328,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"e5ce4199c1bb93083fe7d3d718e2fc94ff5d4f588256729e1201c60a104e4c1d","size":9880990,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.6.0-1-amd64.deb"},{"package":"dotnet-host","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.3","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3f16a25e552118bdefff7b064466df569c214acfb75b7466b89af1b40879db9","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.3-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c38406fde5a67fe3a2bed2735865b1b3e51d6f23ad0ee23bb27461433011383f","size":221301300,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4502-1.deb"},{"package":"powershell","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1b140bf45d3eefdf41ea4dc0793bff981fd16f120845546eb561c998c7b8ee2d","size":68191810,"filename":"pool/main/p/powershell/powershell_7.2.12-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21337,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.2)"],"sha256":"2c6630799fbc17eebedc7a256c11e3340201d455e5c2aa5ce64e552aa07ab848","size":7050582,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.2-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16147,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"4927ad8980bacaa284aae6a65dfae195ebd74c3546a9dc3b5f283adbff09339e","size":4976590,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.22","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.22)","dotnet-runtime-deps-6.0 (>= 6.0.22)"],"sha256":"86c8edb1b543a25dfef7dae191243d36ff939800a0a04f6f6d2a597d208711e0","size":22756012,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"2263268dd3724b84e315045019c19ea3b12dc90cb12a983f49fdfa0c45aef2f6","size":3520144,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.18-x64.deb"},{"package":"powershell","version":"7.1.5-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174301,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"4d0ee19617ebd696527e966a35a00f94ca3e83c850efdde10cd4b27369a17288","size":68234364,"filename":"pool/main/p/powershell/powershell_7.1.5-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-host","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e41a81816f2530fd3a54b2c06027fc3b63c07779ee6e841cd69a6ad46c754af7","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.29-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.24 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.24)","libc6"],"sha256":"7e93324e11a85e2e278d2c457782730536863ada2be36536fa906daaa8430408","size":120808,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e1e1b6c0ce33a0b2dca2400809844b154a4e79e28803ae5c08c1d8ad9897eb39","size":124372068,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4590-1.deb"},{"package":"powershell","version":"7.3.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196866,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"40bee3deb9ac71dfd86a7dbf2f2bdcb8d039fa454dc9d705d579e4957194fcd4","size":71643662,"filename":"pool/main/p/powershell/powershell_7.3.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4438107a1e87d88552be66d4f97174d2858749562bc585e111a556c6163c62d8","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.4-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"89fb369b900c258e1b562eb19a94d7f0d39ed85490fc679686802d0633d67b20","size":224535344,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4585-1.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.2","homepage":"https://github.com/dotnet/core","sha256":"082940af64707c787fbaf9ad384c1bffcbab69a163bafcb20c5fc81a15602943","size":3398280,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.2-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.30 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.30)","libc6"],"sha256":"836cfc014fed64658c164f0cfa5c1a72239cf1cddd6ec540cdb55dfa12e7be4c","size":143462,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.30-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"3f6ac011906fa751b3825746b28515160a1b7b1571a8721ab481da9c5d8ddd69","size":2568066,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188276,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c582b062d21a97cb7efc4a3e386364d5b1c34e1e84b349fc716bf0907a399572","size":69625606,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cbac333cbfd66f544a0f17c1b8d28d9ba4fa16ffc4800e5b7b49d04409961ac6","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.4-x64.deb"},{"package":"moby-compose","version":"2.2.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"2efc3db162bc600ead2d9d9d61f1d2c11b44e175f7dc886a903a9bae2db8af56","size":6318328,"filename":"pool/main/m/moby-compose/moby-compose_2.2.3+azure-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"346995543fd62c9bcb5f29d79defceaa1dc045740a7744e9e059650c4a51c779","size":2370,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.9)","libc6"],"sha256":"d11e1cfee96cc2b1bae9292643cd3ba66bc93256eb6a4b575516539ce70dbcd9","size":143918,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.117-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.117","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"5e35a944d7c356e99ad426f7926222e25137a168f25180a84e250f1452a5a4df","size":44408280,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.117-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.15 Microsoft.NETCore.App 3.1.15","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.15)","dotnet-runtime-deps-3.1 (>= 3.1.15)"],"sha256":"ba356f88ddb6140d0268fd0be5a5dcc31c75644078c0775ff6143a0a20c9d930","size":21779462,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.15-x64.deb"},{"package":"moby-cli","version":"20.10.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0896d5309e54afa99f815f14c8e3ff04e3358dc43b55d8d6c0686c1132a2c106","size":9662014,"filename":"pool/main/m/moby-cli/moby-cli_20.10.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.12)","libc6"],"sha256":"cf766a63271559df4756a494ea2f4e44eed0439aa06e9abaebd9ef4605864e93","size":142378,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.12-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.12 Microsoft.NETCore.App 5.0.12","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.12)","dotnet-hostfxr-5.0 (>= 5.0.12)"],"sha256":"e4cdeb68aea4302db017410c3f67ed4de22daa1d2aeaecf63fc31ca6eb2a6d47","size":21494580,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.12-x64.deb"},{"package":"msodbcsql18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"89901f55eb486aa4da822dc76cf0fd6e118315d4ffecce59a2d06ef704cdd01c","size":748328,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.0.1.1-1_amd64.deb"},{"package":"mssql-zulu-jre-8","version":"8.50.0.52-1","architecture":"amd64","section":"java","priority":"optional","installed_size":108803,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"179bed451b4dc9a714fd420d68a1c5dc6181e844a3242f1d7389b796f8b8f2f6","size":43383650,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.50.0.52-1_amd64.deb"},{"package":"moby-compose","version":"2.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"dc5d0e7d902c4109aeabea6b318eeed91edab1a7ec5cefa93d0271b5e2a386a5","size":6498584,"filename":"pool/main/m/moby-compose/moby-compose_2.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.58.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":207291,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"2756a8f62089c0658da3ae4ed07a1ee3ecbf66f7402a949755638fd545bb3636","size":60775648,"filename":"pool/main/m/mdatp/mdatp_101.58.80.amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.15)"],"sha256":"4d0dbe848462066fa801d87436c285f85a23bf9f191c10f661de48b5cf270eb2","size":6085368,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.15-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350106,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.112","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"afba66259ca95dc675eb24bbecf5b0bc0aacf07f7d48517c35ba62f3e2456cb2","size":90698250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.112-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.12)","dotnet-runtime-deps-6.0 (>= 6.0.12)"],"sha256":"1d806a6e46ff240495369dd475725db165a9affec62a406849716b0f1639ac0e","size":22701764,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.12-x64.deb"},{"package":"moby-compose","version":"2.22.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58356,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"8b02f3867e62b644ccc79eca07d9df6afe37c10b76ceca0bc2150a8eda8e0aed","size":17591254,"filename":"pool/main/m/moby-compose/moby-compose_2.22.0-ubuntu20.04u1_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.1+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348947,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"24b1b22b78ab1df983dc071387e986f867f6df1776d456009ed3dc3fbb03332b","size":205299892,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.1+9-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18085,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"e5889ba4810a386b9936e79b88d8227d234b75fa23195cd551e0a83167c92421","size":3862392,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.2-1_amd64.deb"},{"package":"moby-cli","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":35186,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0caa95c30f185e78bba8715e97da7136f060d781e76bf39bf6d37c18f0e8dd72","size":13042042,"filename":"pool/main/m/moby-cli/moby-cli_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2750-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5f4fa83a6479b527ba9275ee5d855f7286effe0af04cb156ec6e2820179a0336","size":199612768,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2750-1.deb"},{"package":"dotnet-host","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"392275546433e1fa28f1ae534c201dac53bf96e6cd0d3ec8ff70a26fc249b3f0","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.8-x64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4a3d543caa33f4be29d7aea0a33efa581443e6dda42bfdbd1dacd7be2166fee2","size":44742158,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68423,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.14","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.14)","dotnet-runtime-deps-6.0 (>= 6.0.14)"],"sha256":"78bcf00bc7cee6a25df87ca96973a708579a9da6946131698a1fd10444e67dbb","size":22694152,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.14-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"7ea14d800e7ce879d94968dd78e31ad271354d0c84a6a7b1466b1587be999005","size":499706,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.7.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366874,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.305","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"4d75c12e2936c62b5be154a61969239f44680cc12bd9b157f32ea40b93ebeefd","size":96542698,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.305-x64.deb"},{"package":"mssql-mlservices-mlm-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549271,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Full install). Provides python packages revoscalepy, microsoftml, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-py"],"sha256":"f40b5c6c70354d67c278283a872c052ac559bf60315d911cb4ec5e8f0026c894","size":521701284,"filename":"pool/main/m/mssql-mlservices-mlm-py/mssql-mlservices-mlm-py_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.11)"],"sha256":"5b0d4eb3d443b454fde34563054c0edf602f60fc3ddde753a2d21db4259df218","size":6608208,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.11-x64.deb"},{"package":"dotnet-host","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1a95de2961d82020f738965e57218af627370d8b2cbe8008b6fca6047c9db651","size":52666,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.13-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70839,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.9)","dotnet-hostfxr-7.0 (>= 7.0.9)"],"sha256":"cf64af93034be5eb0e8b4152100ee1f62ce1c41db6c3e8efc870c60ece52b222","size":23199430,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0a904362091791c5465b9ee18a2ff9667f052d59e5d4bd24d343f8d11de4839b","size":155422440,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5198-1.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3827a6839c3a55bbb8f0cc26906f21bf7620369e5ddf8de7964baeda6c8786e0","size":5765922,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.22 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.22)","libc6"],"sha256":"5d4aacd0bbb204df019c83122607cfa3b4788bc6165843ba5bf13942b78ab04f","size":120766,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.22-x64.deb"},{"package":"libmsquic","version":"1.9.0","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@d9433bfe88a5>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"bd5ba068566c5cd6f84b8c1e7ce88332f7c5fe8cea9e6f5e52a700a1a57e4b48","size":773398,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.0_amd64.deb"},{"package":"msodbcsql17","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"73bfd1fb1b70dac76e68e59f5635d9383e3bce223ccbd73b43246cdef4a5b626","size":743884,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.8.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.6","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"293ddde2a6efd98dcfd5cef91444d5a5226bfa3b52592b81c303fe610117314c","size":55838,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.6-x64.deb"},{"package":"powershell","version":"7.3.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196826,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7190f391fdbacfababd8a2801b9ac1ff2b98663fefa2bd70b2bdc4a366ed02e0","size":71622188,"filename":"pool/main/p/powershell/powershell_7.3.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222412,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.201","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"970a6612345d7b157b485fdb3ca12e3792768a383d95eaa6d0e49a8b0096f8b7","size":57570422,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":512,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.10.0~beta.1)"],"sha256":"e1ea2d650eddc24d02243d7b2a656e99f14dc67730242cbc05de820419d29ad4","size":79326,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"msodbcsql18","version":"18.2.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"2a2e0b7fe70fd41ff87823d67e7544b555657c333f22541f5a1b96fa82b1741f","size":752616,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.2.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.11","homepage":"https://github.com/dotnet/core","sha256":"f5f590c6be535a897976074d656ba9fe04be87c63a860a0217db724c6518178f","size":42744,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.11-x64.deb"},{"package":"msopenjdk-17","version":"17.0.3+7-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323643,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9ceeed9a945f9b772de6157a86eb1ec2a7e995fb2bd06b796c8687a9e8e1b43b","size":191708950,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.3_amd64.deb"},{"package":"azapi2azurerm","version":"1.7.0","architecture":"amd64","section":"default","priority":"optional","installed_size":38084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6389f078d27cd88e4d98a835f40d2c4a59ccab93f65bd4811ba21ba6219f7711","size":10216844,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.7.0-1-amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.4)"],"sha256":"85b026987b04ff8258d6e42677e2292d1b775f562e86ae7a1de9305646c27147","size":7051730,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.4-x64.deb"},{"package":"microsoft-identity-diagnostics","source":"microsoft-identity-diagnostics","version":"1.1.0","architecture":"amd64","section":"java","priority":"optional","installed_size":3944,"maintainer":"Microsoft Identity","description":"microsoft-identity-diagnostics","depends":["default-jre","jq"],"owner":"Microsoft Identity","packager":"Microsoft Identity","sha256":"c3fea4c7143de315a6fc5a565939a7be654aaecc113e5e8a250ac83fbb645e86","size":3710392,"filename":"pool/main/m/microsoft-identity-diagnostics/microsoft-identity-diagnostics_1.1.0_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.17)"],"sha256":"ea006190e965a407726db2ec6f533f39e83eea4785cba16b89fdc55c561800e8","size":5771072,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.17-x64.deb"},{"package":"moby-cli","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61009,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"084cd12e9d8a5b238eb2e10dafd4adc2f10e8fe586021682d8f4f891bd3e517e","size":10611276,"filename":"pool/main/m/moby-cli/moby-cli_20.10.15+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.4.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18300,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.3-1)","sed"],"sha256":"0ae876963ac701d7686dcae51c07ed0edf0ab3a529fb1f87ae76b9d191a21775","size":4361250,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.9-1_amd64.deb"},{"package":"moby-cli","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5b8bfba41a2afa6de91fbf35a0fc005c549ba4428acefab6216fc070a230b137","size":10594424,"filename":"pool/main/m/moby-cli/moby-cli_20.10.14+azure-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"22db54b2b0a7d85c4fd6ddcbd1071cf6690f37fe1f86b2ab1d76605301c297d3","size":2126478,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2748-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e4757e43421856dd01a297de2518a0979455f303affc4df7775a9dacb9ac464d","size":155251980,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2748-1.deb"},{"package":"moby-compose","version":"2.0.0~rc.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25268,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"9571f78093694921902fe407649388fd4b48b8f89432893458891e2ccaea8660","size":6247244,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~rc.2+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"00194f5ea94974620a3255fc29990b323b621317fed2e9f209dcadf14528aaab","size":408388,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014760002_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e4e957b810ff363c724afd9398a9d02fe4cb3f78fd611694d5b9ab9abada1bfa","size":2662,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.18-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"ed6c17e9b097f870215ae32caba285a0a5e80f0281d42f9e0e53250eba6095c8","size":1308164,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.6-x64.deb"},{"package":"mdatp","version":"101.56.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":209752,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"f3da7d4ec2f218f3c89d55f054f8981d85c444935882dfd3944edc076a0f91e8","size":60952270,"filename":"pool/main/m/mdatp/mdatp_101.56.62.amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.15","homepage":"https://github.com/dotnet/core","sha256":"44c3a29730492668bbd5821e70081e0ddb20b38fc2eaa5c4c2ebf99fe9784e44","size":42262,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.15-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.308","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"79fc932e3258553858c6382c16802fcfa94d62f28517117af2afb39d56a11948","size":85094014,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.308-x64.deb"},{"package":"libmsquic","version":"1.9.1","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@9d58bd1cab7b>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"005fa43baa219c99f3dbd5390570f7784ad57a665ee75e526dd23a3c1ef2cfd7","size":773500,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.30)"],"sha256":"402f832862ef2322cff59931844b5adbcbdab63725a9925667883ff45dfe9ed0","size":5775564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.18 3.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.18)","libc6"],"sha256":"ee67dd1b1a5740ae263785574907efd2869998fc9af0d6735b196a5410e10eeb","size":120800,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.18-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"5157e4e1f5161048ca76e1fe1cff487d566ab21e491dc55346b9ca02dea26707","size":10202,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017190001_amd64.deb"},{"package":"aadsshlogin","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"3f5c88739aae903fdcc035eadb492764c0d0c2d8faa2db9432f1b7eeabf1bcd8","size":415792,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020320001_amd64.deb"},{"package":"moby-engine","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"530b25a33deb1641dd9ff15065ec7ba248a9ded75b96d2409cffe9d8970f1533","size":20691414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.11 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.11)","libc6"],"sha256":"346c1c49b7f41d464719a2389b1340515b64899cbef07d560eafd65437064630","size":140414,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.11-x64.deb"},{"package":"mdatp","version":"101.98.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":311625,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"147bab5f68ee0bad8b2eec5dd67bf10db5ee75bcc867902d63ad39b706e351ab","size":120076756,"filename":"pool/main/m/mdatp/mdatp_101.98.64.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"19454afb0d67ecf652c90ecbf65443b5524652960848ad267989b2122edcd5e8","size":421574,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.419-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189759,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.419","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.25)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.25)","aspnetcore-runtime-3.1 (>= 3.1.25)"],"sha256":"9b5337bd95cc181c5bb932c143f3113176dab3e06285edb8855cb25dc6aba921","size":48632002,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.419-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.18)"],"sha256":"96d5e5d5856a7748dca4536b045a993327362e7fc8b70403f71a7b1d511e40e0","size":5770944,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.18-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366165,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.302","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"0eb71faed541f514db82c099ca2673a31f61a1610d609015125e5bf8b0825127","size":96471690,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.302-x64.deb"},{"package":"mssql-tools","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"738e74704c935e0e6710a486b5607629201e4d1ccd8267a007286bad06314979","size":210546,"filename":"pool/main/m/mssql-tools/mssql-tools_17.9.1.1-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.24","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.24)","dotnet-runtime-deps-6.0 (>= 6.0.24)"],"sha256":"da2ab36b08a57243f18bb74639b7c3d04b208b53cc97fa52a6e7fadbfeb3a76f","size":23042886,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.14","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3cbd0265d728a2e0f045f86b1426f91511042c41d64dd5c842f98a9e31a3cb3","size":55756,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17477,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.28)"],"sha256":"d3462772eb5accb36372a0b01f079b44da114b8f9c8a404ae4512c4ad8df2fa6","size":5770252,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.28-x64.deb"},{"package":"mdatp","version":"101.23.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"a7579005e783af0a46215df77bba992acd3d641fb72e331d9b7b83d958db4f33","size":44873452,"filename":"pool/main/m/mdatp/mdatp_101.23.64.amd64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":65424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"da7bb023af3964e47ea808fc590db7ea4b9178253ef0ef5b7959f33e026825cf","size":24476584,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"azcmagent","version":"1.8.21196.008","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"48220f8a0d8da89a839770f528dc24c937d37d07c4a1b250f82c40589ce987fd","size":49539918,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21196.008_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.24 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.24)","libc6"],"sha256":"1c963d730df35afbdd08774445048e21b215fe4a1ca4aa7a315038f262206fff","size":143978,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.24-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.613-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237379,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.613","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"af89a736bbe1bdd955cf185d762f48c2538da908fff74b8c5625a68a928280cf","size":91109030,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.613-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"98e226c6ba99ef984fc0672c64c50b5ad3b1b03ba574ddbcdcb87cb6920100a1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.4-x64.deb"},{"package":"moby-runc","version":"1.0.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15164,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"966319b07864ddb965f0fae70aa331b228f9ba5ef8eee8fc5bccec0be9097d61","size":5342240,"filename":"pool/main/m/moby-runc/moby-runc_1.0.2+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"47224012dd00dc4ca3922f53ec6f28b59183c31e8b96d6fb5378f16bdc48ea58","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.3-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"b53ebcfacdf29eac63b0cbfbac377be5a0d43604f42f9a81332a3bd7ef3ca668","size":8618,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.0.0_amd64.deb"},{"package":"blobfuse","version":"1.3.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":32116,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"e7e371cd87cdccddccd16a489a8ce328fc91966000cf15b231b8071aa484bbd8","size":9247938,"filename":"pool/main/b/blobfuse/blobfuse-1.3.3-Linux.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9a9bf7427c72d85516659c34b1d3155144bc9f45e8268b5afb5fd6f6cd3b80e2","size":165951860,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2855-1.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"298ca20f667539f0447ce70b602175c5a43667e4df2a5918850e38be70d93e74","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.11-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"df9e26395b518354f6b59724ca4a99385a81d0dcd93116629e650791ccc54373","size":854522,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71070,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.4 Microsoft.NETCore.App 3.1.4","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.4)","dotnet-runtime-deps-3.1 (>= 3.1.4)"],"sha256":"28a521d6ea2af92c6c3f028cfe5de65f49830fedb26cd0ab8c50716a9093414e","size":21758502,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.4-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330659,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.303","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"e03edf1562de2d46ed9ede9b2090c8c67c694c22dda9caab48a7b3de7bbc994c","size":84893404,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.303-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.29 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.29)","libc6"],"sha256":"037ac33738434a2134563d40a0b20811bb4e01543bf25a16d700f769e1117470","size":143502,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.29-x64.deb"},{"package":"msodbcsql18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"b03047121eb77666ab31d842f1b5e7abf0d488d4964de97cd7864296312c5058","size":751576,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.1.1-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"7e1318fbdb8cb45bcda27e89eb70503024856fc6dd746c6ec4afaec7583e357d","size":13151206,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-Ubuntu-20.04-x86-64.deb"},{"package":"moby-compose","version":"2.4.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25900,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"a44fe5896d17c913708b1ec073a27b3005e06e2da4ce1bcc4e9d66105deaf0c7","size":6553632,"filename":"pool/main/m/moby-compose/moby-compose_2.4.1+azure-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"89ac9a18542ccbf905a024567e4b112ac7ad87fe01341b88f36076dc3aa42cac","size":36608,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.30-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.414","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"a74f1f420d43895ed7672cdaa10c34e6061f3794203c21bda1163a805da6003d","size":47689264,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.414-x64.deb"},{"package":"aziot-edge","version":"1.2.7-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":24498,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.5-1)","sed"],"sha256":"be275ac3efb940ce9813ec539b4d71deb49f1308890975b3396441ec15bb0bf1","size":5801232,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.7-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.420-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192811,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.420","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.26)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.26)","aspnetcore-runtime-3.1 (>= 3.1.26)"],"sha256":"2559bd4f2f5f56aa43038f36b6c6ecd62e80f2f7e7b2c42dcea35f2ff57c4393","size":49628712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.420-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0edb21dea4dc5410ef2d5eb293973ad3674cf78a0c2feca897d8b78de2bf1be0","size":3521342,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.201","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"f76fd2500bc24f7d149bc04898c38b7739855f89083f9ba6bdeb608be077e336","size":91822146,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.201-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"38f353af5ed7d7fc336527e53b4a000a63e832d9aa2431ab9c6cf0343ee7cdc2","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.3-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2453,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"01ff7a8f22ae168b292f2ae2195d5ca245ccfcce3731a668d2297d688b48ec55","size":600674,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"caa042a6bbd325c7bbb6d43906cc82643139192e294081d965ab9f01fbdfa099","size":2134180,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.16-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"2b0162e4c5436de0e1d77bd3983f4c30980d6e0f9082b4605bde0b1dcedf0edd","size":276220,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.13.1.deb"},{"package":"mdatp","version":"101.18.53","architecture":"amd64","section":"devel","priority":"optional","installed_size":161906,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"81461dc1ff36d153bd25ffe1df4bac5b86d0c1f04dfaf51bc88983cd5bd71c1e","size":46555298,"filename":"pool/main/m/mdatp/mdatp_101.18.53.amd64.deb"},{"package":"mssql-mlservices-packages-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":930206,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Minimal install). Provides RevoScaleR, sqlRUtils, MicrosoftML, olapR. Excludes pre-trained models","depends":["microsoft-r-open-mro-3.5.2","microsoft-r-open-mkl-3.5.2","mssql-server-extensibility (>=15.0.2000)","microsoft-openmpi (>=3.0.0)","zip","unzip"],"sha256":"e14ac0e6d687739a1e3909989000a25fee5d8a9929b48e39dd78f00943c6f469","size":315570216,"filename":"pool/main/m/mssql-mlservices-packages-r/mssql-mlservices-packages-r_9.4.7.958_amd64.deb"},{"package":"moby-compose","version":"2.0.0~beta.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":24812,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f56dcf1e37a8142f372a00065d6777249c2824527082902abe2edf9c6a99ce57","size":6150688,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~beta.6+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3568-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7740d9dabdc573fd79a667270286de40d4e7e228ac625b13430c6817329591ba","size":210162064,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3568-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68340,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.14 Microsoft.NETCore.App 5.0.14","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.14)","dotnet-hostfxr-5.0 (>= 5.0.14)"],"sha256":"e4586a6c19e25f8de85705e8eba701d831528a41af4802f56be25a099b6a69ac","size":21997426,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.20)"],"sha256":"eb3e6be4924a022cd556e69e57c659224958f95923f07291797ae2dc163b1a85","size":5771624,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.20-x64.deb"},{"package":"omi","source":"omi","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4932,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"50b375bd6daebc0d958bf2e40b4d1344d0d0e60f33a96fe9047fed28177a7978","size":1916714,"filename":"pool/main/o/omi/omi-1.7.1-0.ssl_110.ulinux.s.x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.19","homepage":"https://github.com/dotnet/core","sha256":"bf3f3c369ee7c8d2ec6a8b943cb33d6ebdefa6c7a9c10da16bc10c6301984c24","size":41926,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.19-x64.deb"},{"package":"mdatp","version":"101.23082.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":411025,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"6eb534b0e23b061644bf6b11a6eaeacc59e7f44ca5afba33a505f3950ebf456f","size":150354446,"filename":"pool/main/m/mdatp/mdatp_101.23082.0009_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2630-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3b3068a6c3dc8569dfe470d4d49907b94ccc0b26daaf5ea75c1b14866374b5b0","size":196791632,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2630-1.deb"},{"package":"dotnet-host","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8d6bc7c7136b190c4be6ad8166c1fc434b7b5e01b1cdb92de4ff74011784112e","size":52610,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.16-x64.deb"},{"package":"powershell","version":"7.3.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172244,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c4ddfbad0231ba18ad70571c4c5d69f5a2dd5f7834054737ac6bb4089d83317e","size":69188746,"filename":"pool/main/p/powershell/powershell_7.3.8-1.deb_amd64.deb"},{"package":"servicefabric","version":"9.0.1260.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"06efd5242831d6cbe0ad52c5f48c8c7b8f351111866a2157213bea352bf751d6","size":219809800,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1260.1.deb"},{"package":"open-enclave-hostverify","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"eac91b2aeb9a9d5d65bfc3bee92bc182b45a1dc36206565b9e1a29991510cde8","size":838576,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.2_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.418-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189686,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.418","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.24)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.24)","aspnetcore-runtime-3.1 (>= 3.1.24)"],"sha256":"110ed42ce693e9e87a8d262ccfb4890258c1b9c67aa74289a75ef05270284c70","size":48701804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.418-x64.deb"},{"package":"dotnet-host","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ced1920acd3fa15e7b196570f2a8ccb7f7b5f190d6f54bef6542f5812652647a","size":52544,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.10-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.524-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228636,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.524","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"4337dc8d667486f84b352f6ed5191439e4eae6ce9e7053c113ba86f6ea20dbc6","size":89347104,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.524-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.9)","dotnet-runtime-deps-6.0 (>= 6.0.9)"],"sha256":"43fd3fccf39777add0f20b110264ad674c51db7e71cba095e694e45fd286b195","size":22757840,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.9-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124351,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c6294b5e3f4ccd0be66fbbaa85c712a6e8ea40b6b1ef21b2c0fa75665b2a2bbd","size":46492464,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.5-1.deb_amd64.deb"},{"package":"az-dcap-client","version":"1.12.0","architecture":"amd64","section":"unknown","priority":"optional","installed_size":928,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8f8b8a97e62e5e6c96737e6ad5beebb6cf72ec287ff91f22dbd012de8b3b0c3e","size":157348,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.0_amd64.deb"},{"package":"moby-compose","version":"2.0.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25308,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"77efca81480ca14296bb9ee2431243f2f7a1f4a99e0416de54cd6a09affaba5c","size":6258904,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.417-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189683,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.417","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.23)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.23)","aspnetcore-runtime-3.1 (>= 3.1.23)"],"sha256":"c2eb73259d21d048a36a6dd1a94b491b22d803066efc0ca0416daf3a4aea8b27","size":48794952,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.417-x64.deb"},{"package":"aadlogin","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"a0fc2406eaa9ec62c488c6663cefe2d8c4ed0422d7c0a5776dd8fda173ebb2c8","size":409538,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015090003_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3904-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fce4415081b2014454c7e0e09b55cb0c4518ecdfdfa96e6b7e7e5054b0548a9b","size":210976936,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3904-1.deb"},{"package":"azure-functions-core-tools","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fbd61709f8d36b229cc8fefd7fb657958c6e05a60cc63cce0e8e1c61bfe2e267","size":156055452,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5095-1.deb"},{"package":"azcmagent","version":"1.30.02313.864","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"217334ca96338070b7e7592e98eebff6de450b154e79b095fb77956269d08bb7","size":54191138,"filename":"pool/main/a/azcmagent/azcmagent_1.30.02313.864_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4865-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e5a1b29838b4bd994f116abd7703c5705e0e88177b0899d91f157b8592ed1864","size":126081380,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4865-1.deb"},{"package":"iotedge","version":"1.1.13-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22410,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.13-1)","sed"],"sha256":"5226e164dd8e0b6318a9c83ebc12ae4b7f10dfbf1da6b489616c328326d2a17b","size":5365236,"filename":"pool/main/i/iotedge/iotedge_1.1.13-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"dfb9214017c725b2f2857bd83da980623a9136e48905375df61319b1ccb12ec1","size":3531316,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.12-x64.deb"},{"package":"blobfuse","version":"1.3.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":32438,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.6 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6aede32ccf34dbfd76bffbb270a4fe2b15a2f2bf1f5bf8ea4fec63f80f9081eb","size":9324526,"filename":"pool/main/b/blobfuse/blobfuse-1.3.6-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"0e7f8c54b3dfea3b702f365b5a3e6ea6d8cf4a7c4662060468bdc85b7ba5bc0a","size":3510880,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.6 Microsoft.NETCore.App 5.0.6","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.6)","dotnet-hostfxr-5.0 (>= 5.0.6)"],"sha256":"4df8bd5483874ceecce6b637025073d3b22786fee9ef4af2dedb232eed5873e2","size":22057276,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.6-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.517-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228837,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.517","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"e6e6d81c8eaa8b4fb732e5f7fdac15e177c239dbd031a175b97145ffa6f0b786","size":89500922,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.517-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"b80fa237cab00252cc80941d7c912bed0c6565891b9ad4a41ebb2641e1c138a8","size":2133678,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"aea9bbfadb50a1d585f155e1288b96a271e5323745a8237804d4d1ebab50e5fd","size":1885624,"filename":"pool/main/o/omi/omi-1.7.0-0.ssl_110.ulinux.x64.deb"},{"package":"mdatp","version":"101.23052.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":338816,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"9ab4f42422cc0a05edb15b77e86a6ce02a81723fa78cccb88cd050252d63bb91","size":127189952,"filename":"pool/main/m/mdatp/mdatp_101.23052.0009.amd64.deb"},{"package":"osconfig","version":"1.0.5.2023013001","architecture":"amd64","section":"devel","priority":"optional","installed_size":5153,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"52ba97e9735618903e85a50294eef44fa930ee476077d7416a4e7bc2ef40f1fa","size":1851528,"filename":"pool/main/o/osconfig/osconfig_1.0.5.2023013001_focal_x86_64.deb"},{"package":"sysmonforlinux","version":"1.2.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.2.0)"],"sha256":"39e135f6689b247a432965a4637d4ef33b8e247185a84b6e22bb88cf85f941f3","size":1763970,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.2.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4484-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"607fe4f1b916dc219c50db78982467537da3ff06c52419690be4be120dec1800","size":211180224,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4484-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":759,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"d20d401ffd04570d660e9519f01856af426e76e43bb0dc881e02089375f77b1e","size":114856,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337378,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.412","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"dd362800c334d523de07ad66ee417fc7bfb3719fae9e47a6db056bc550a0f071","size":86785310,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.412-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.20 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.20)","libc6"],"sha256":"f39bd912468456be7292f870fdff2c06fa5f89117d240e2b4ef8362a5b3d1005","size":143576,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.20-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.25 Microsoft.NETCore.App 3.1.25","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.25)","dotnet-runtime-deps-3.1 (>= 3.1.25)"],"sha256":"a0d0d0fbbab9b9daf11923e9cbaa91f9501881a2a71235ae79038d8f46cc928c","size":21306090,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.25-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86958,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1f0df1f218007cb1f051cc4fd80e79ae38a1a9641be0fa71ae2f754023bea6b5","size":20689626,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126664,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0bdc48a71d6515f866fedbd9aef11869979c3fbb1aac470b1ca8a4a366025d20","size":47817962,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a76ec8cf376965a2fd15d5e058801940fea64b84d1d1806bb27d647b8d26b25c","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.22-x64.deb"},{"package":"msopenjdk-17","version":"17.0.4-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323723,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9a19875d9ceb75e0a53b8d891e251d2f3e3b5e8fe2d8212958dbfae9d9a6fcb5","size":191767862,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ebffdfbece2e6a15cb8ca36681eb25fe4af0cc3a0914b468c97f5dde27b1cf1a","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.2-x64.deb"},{"package":"codespaces","version":"1.0.2705","architecture":"amd64","section":"devel","priority":"extra","installed_size":94759,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"f7d3d255d28501e3b044c629a5f5c124481d1752e2d57dc3f3e8a09f08cc6a01","size":27038796,"filename":"pool/main/c/codespaces/codespaces_1.0.2705_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fdab3fb00d13808ecfbfc38615abdbfd719852aac2af5244d4d96f650fd7a6d8","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70794,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.3)","dotnet-hostfxr-7.0 (>= 7.0.3)"],"sha256":"872025cfc583a1011dfcab995b870b320c02ac0bb639fef2473da68193d04de1","size":23196546,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.3-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.413","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"6f9a124784e3653bd9e94ca6e5a6bb334876bc0c8c311c6ba9b8f56378175576","size":86794698,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.413-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":9002,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"44ad702805647f92be8eb885950c28ab5bfc886b5c27a7106adf069acc3436ba","size":950516,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.8.deb"},{"package":"dotnet-host","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"caa3845eeafc6c216ba279ff4646785cf2fa433e7927a3183cf89083dfdbfd35","size":32472,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.28-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2602,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"115f317b11d6b989cb7e2ca91a93378e72e1c0dd5c66b0b6e3302ba185756356","size":647158,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.10.0~beta.1-Linux.deb"},{"package":"azcmagent","version":"1.1.20287.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"046ccbd2a8fc63e22f6c1e35ea12d4cf7989680f43ebb1f884ec485797248266","size":18254798,"filename":"pool/main/a/azcmagent/azcmagent_1.1.20287.003_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.1)"],"sha256":"c085c0275e7e0a416d98c5514c08e43e1842f20f97f5d7bc2f1b647f442375fe","size":1496790,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.1-x64.deb"},{"package":"procdump","version":"2.2-17219","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3c7d9ee6832a137f4f0a331bc0c9e002f544df6f90c38f878203432e70f78320","size":1649314,"filename":"pool/main/p/procdump/procdump_2.2-17219_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"767a00e324ffcc296021afd1aecdb3263cbab0d79bdc33dbeadc4925f1967215","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.21-ubuntu.14.04-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"e5638610bf3a4a5a45029e91edba0ecc1a6d45d25e733014a4a1ffe927a34aaa","size":2569446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.8-x64.deb"},{"package":"moby-buildx","version":"0.8.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"75b1a3ddf85ec693e210a5c1c95520e0bd0daad97855b83e71d1189036e7e8a6","size":23115808,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.1+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["uuid-runtime","libcurl4","openssh-server"],"sha256":"f0ce33c696ef3e43db1863ece443bd9cf05a147e9ee1895de7a8bf02c10f89e2","size":408454,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014460002_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.4 Microsoft.NETCore.App 5.0.4","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.4)","dotnet-hostfxr-5.0 (>= 5.0.4)"],"sha256":"23b35e8f0806da0400692a6fccced60b646c963f670b4d4f0afc611741b61e53","size":21666482,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b5292e77dea925f8f42cebefed36456b7d445550667e4e2f10c421800243eaf3","size":2802,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.11-x64.deb"},{"package":"moby-runc","version":"1.1.6+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"13a329ff5144bea7a53279c7817d93ecaa809b54fe6fb3446271a801ecbf2f75","size":5765270,"filename":"pool/main/m/moby-runc/moby-runc_1.1.6+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2931-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"24469122e8d18f39a1cd81536e686e64a4db72023381f7e6100aa28dbf46843c","size":189901280,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2931-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"77c33e5cc79a5e787f2ea52d4ed1d5b488fa1b8a75bac71f89aa7dbb66884172","size":224546532,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4585-1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.204-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.204","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"f201477cbd121fc19972135c96df8cad66f1d032cd6674b3cfe7bfb3dbfd7a30","size":57052168,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.204-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2798-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1180664cb2b0443c917020035cbc9afbe6c2f0eb02b44b368fdaa06b6e9c9ca1","size":199570824,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2798-1.deb"},{"package":"azcmagent","version":"1.5.21103.012","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"ae286b111045800a34714dd0c235ad2c1332f0427cd9d4efb20bbf8b966b77c6","size":18200878,"filename":"pool/main/a/azcmagent/azcmagent_1.5.21103.012_amd64.deb"},{"package":"blobfuse","version":"1.3.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":32299,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"4f2cdf1424188cef2f2c9d84056518a1aa605f70418cfa49db413378f3828dff","size":9275670,"filename":"pool/main/b/blobfuse/blobfuse-1.3.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.14","homepage":"https://github.com/dotnet/core","sha256":"90ef0d4bdf9275dbf138490bd2fc308d7291ea1c4cca4428b518c9d34f9235be","size":3412096,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.14-x64.deb"},{"package":"dotnet-host","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f6f7c2d47dfb5611daa5362c784b4a3132643affa2af8eea2d73d2c616ebe3a","size":32848,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.10-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.15)"],"sha256":"1ba5241e0921b49c5b79ca6352cb9471c9f52404fc781d619d0c500af9309853","size":5771540,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.207-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222088,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.207","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"d1bc258e7ce50cf0032c1599dc4953b2d3053a25b70c55999294148142cf144b","size":57439210,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.207-x64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11)","odbcinst1debian2 (= 2.3.11)","libltdl3-dev"],"sha256":"af92e472b5811d93ee143d74f84e36035d54e879c3e983c20c1ce831ed3c2661","size":42092,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":192266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a3aee968950be1b9dc7e8900ce2ac8537cc349dbb5f8c9ec4147ae5d6c704a1","size":69296044,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.8-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.23 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.23)","libc6"],"sha256":"19334631da0ccb215cf05921be73263251b86a3928a49b22dfd2eb3a316c4233","size":143478,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.23-x64.deb"},{"package":"osconfig","version":"1.0.3.2022061604","architecture":"amd64","section":"devel","priority":"optional","installed_size":5338,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"b90f458ed9a31c68751e7c911339b88f26934637f15f0c4668a74b83d1f5a8c8","size":1873930,"filename":"pool/main/o/osconfig/osconfig_1.0.3.2022061604_focal_x86_64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":46224,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"d17612518e9da1676b1d7ca4e4a5c34cdf0112034e2147c84c6c968f47d5ef8e","size":10168922,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.17 Microsoft.NETCore.App 3.1.17","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.17)","dotnet-runtime-deps-3.1 (>= 3.1.17)"],"sha256":"a77fe36f2576b841a6c97d8ff34fe371b3a5e99d5dcca6e7857ddd8e8f644b12","size":22014644,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.17-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.10 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.10)","libc6"],"sha256":"d3b59efb3cacce21964eaed142cfddcf9ee089bc03be959f6668cf782f85ab42","size":140290,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.10-x64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"0cf41bd4984948cf0efeef593c8455ef9085dfc7797ceac09c93a32d5d633588","size":26991484,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-3_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.0)"],"sha256":"7afb956081476567eaf4cfc501d80e36f45e7f5cfa632b9bd3f5ae11164498ef","size":6597988,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.0-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"03b6bf32043878a8795761446606057d6ebc4b983189e373e11f98d4ecdcdd7a","size":163448,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.0.0_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70844,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.13)","dotnet-hostfxr-7.0 (>= 7.0.13)"],"sha256":"8e1eddfe95f1ff945a99e4a7320e89168791bef823d2c208a94fa337198ab7af","size":23207954,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.412","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"9552616ce32bdb1cb508912f5a1658fb837908f5a8683a4dfe218c96afeb7e72","size":48448546,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.412-x64.deb"},{"package":"dotnet-host","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.23","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b09d6cde7441c2eaff5b52f2946dbd20f13c27277b7882b083db362c5c982ab4","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.23-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.119-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.119","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"b86c178e4a12c74704dcf88ce50509c5464abb2f0cb5647d42285851814ead77","size":44221936,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.119-x64.deb"},{"package":"moby-containerd","version":"1.5.14+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":107149,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ae122dadaf5ec4af7b7eb176cd30cd25f304b7bc3ab375fe98a0c4a4d195a652","size":26328750,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.14+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.6.21132.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7848a2e2af66bf781f9ed6e97383d75c91572e8ae78507411d46a15a9b2dfaf2","size":18393252,"filename":"pool/main/a/azcmagent/azcmagent_1.6.21132.003_amd64.deb"},{"package":"moby-engine","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97192,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3b00225c2da675b9aec9bb564c96f28f1324e1e0b811d85a9f92258982cc68f4","size":22796342,"filename":"pool/main/m/moby-engine/moby-engine_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"sha256":"1cbb09e808628fc0f6b3c8d4190bdf72aa4abeae6bee553fb279eaf530f3d5ca","size":247000,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge-3.6.1.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"40054404658f583020b4fbbe0457de6cfd4b0fbe4bf0ee29f1f7ea0489023d5b","size":99742,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11_amd64.deb"},{"package":"moby-containerd","version":"1.6.16+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":123874,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2d48ceb4e5a1342de32c5ff1b522eead21f1738d782785a3469b18087d69e815","size":30983354,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.16+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":320277,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.202","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"9c772c540a3c0f2d381f43e8c957d125bc60eaaac26bc03df64af37c16b295a9","size":80345074,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.202-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2c6cfbcac249976eb38350d6ab9bc5ca5b7e24f9912fb16b0ac5183439d03a06","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.3-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.13)"],"sha256":"715b47ec285b237f848de3812c6ade82e8e145506742445e4e15679a94a3d3e8","size":5770616,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.13-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189425,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"0e13c8b61406fd33189984cdf15825163d9ad9efdd6ff0eee3a59f1a9f87602a","size":47662712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.403-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.13 Microsoft.NETCore.App 3.1.13","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.13)","dotnet-runtime-deps-3.1 (>= 3.1.13)"],"sha256":"e68e3308a9fb85ab39ed98538604c0f55f7906176aee67cd2ea965b744ca97c4","size":21727966,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.13-x64.deb"},{"package":"aadsshlogin","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"27ebc6dbdfbacb230152da41b1fc87b66a5b37a8f3b72d3def70de0c249906af","size":283634,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022090001_amd64.deb"},{"package":"dotnet-host","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"aff93d6991b1b40fe3cf237917bbcfe051796b8499d0109d601449fb05cc2f92","size":32874,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.12-x64.deb"},{"package":"azcmagent","version":"1.18.01965.166","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"6222db0bc7e2b874193d109b88d420ad3f39198caa0d013a314e1ee43763c739","size":52442524,"filename":"pool/main/a/azcmagent/azcmagent_1.18.01965.166_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.403","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"02fc8659df6b8072d12a3fe4757d0e75c91ef0f4829edd926f0766737c5d315d","size":108194782,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.403-1_amd64.deb"},{"package":"moby-engine","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106338,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"05a18fb71276a063f8a6f2ca216bbe3cd6cb2bf1731ebb1ac34292d4b8e6d23c","size":22708988,"filename":"pool/main/m/moby-engine/moby-engine_19.03.14+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312591,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.104","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"966102b1975f5a371ec6e70fc87181846d1ee81bd4eb4747a439cfde6b840022","size":77930174,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.104-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6a06548c60acd80cbeae521682d0257bf2d19e04c8b830246ad966b9e7a19c9","size":156768584,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5274-1.deb"},{"package":"sysinternalsebpf","version":"1.1.1","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"1dd9e60dfefcc67a0617b864467b91237043d0ec1bff053d6d09a147aa33bcdd","size":675114,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.1-0_amd64.deb"},{"package":"iotedge","version":"1.1.11-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22406,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.11-1)","sed"],"sha256":"b307e4f510a3425f3d3282ad0763db7cc7bd1360e41f3dc3548ee8f033c0b1c5","size":5366952,"filename":"pool/main/i/iotedge/iotedge_1.1.11-1_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":501,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core","azure-ai-vision-runtime-image-analysis"],"sha256":"2c5191dbe6fd403b2602052e8c8eec335fe79b4a12587ea32cb22d39a9cd8331","size":77352,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":125669,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"166445aebcd9332fa928bafcd666cee7e4e8d59b126b602d055dc76253d2381c","size":31518918,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0abf0aea546c03a27a2948b0ef5f51f2eb6120b39dce94983a2f214249c7b7b1","size":2568446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e9cf6178ae45f187173f1f806e1889cbcf87fa9e55fb4658ff1ef0617d2de25","size":68352544,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-host","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.15","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2d084d26ada01ddc7eb08809dd498002f112670c8aee58b122200cce86a8ac00","size":55902,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libpam0g (>= 0.99.7.1)","libselinux1 (>= 2.0.65)","libsemanage1 (>= 2.0.32)","libssl1.1 (>= 1.1.0)","libuuid1 (>= 2.16)","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"c9c89c8d6d55e1887e3fc8b15252850095c7ad10c19bcc78d1fc21c729c4a163","size":287578,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_amd64.deb"},{"package":"mdatp","version":"101.60.93","architecture":"amd64","section":"devel","priority":"optional","installed_size":207852,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9faf6bf463dcd6cb467eb3b887b9f5af1d7c5a0e05126b989f5c7c640db84567","size":60945336,"filename":"pool/main/m/mdatp/mdatp_101.60.93.amd64.deb"},{"package":"azcmagent","version":"1.24.02147.540","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"572a26cd0e32a9d21ad0c6df406349110bde36150426e0f78a2bc84f532f51dc","size":53624042,"filename":"pool/main/a/azcmagent/azcmagent_1.24.02147.540_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.8","homepage":"https://github.com/dotnet/core","sha256":"5a6723aa7323f676d0ec8465fe3b602fd6cf8adeb4eb3116811624a140b876ac","size":42452,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.8-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)"],"sha256":"8e7550023fbc57e74b2c137731f2dedf9dc8c0fc1b106b9d051e0dba8e97e862","size":5099542,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.31 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.31)","libc6"],"sha256":"56ef9743de9e2daf7a37873c7d8df3b022354219ec5f8f53a7a5c02138ac405f","size":120744,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.31-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337159,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.406","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"6f0964aa293e16b62a09a7c9729f03739dd5f5580702abafa2836d02bec26014","size":86710362,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.406-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.18","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.18)","dotnet-runtime-deps-6.0 (>= 6.0.18)"],"sha256":"bebae5e400edcf0dde125ac0be4a050443701904abc62d951097ea836865b347","size":23003214,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.18-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"becf3010aa8513fac0cbdaaf3173b2fc4363c1d6e8edf0b0db6762c3f8fbc640","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.16-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.17 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.17)","libc6"],"sha256":"5a5023c3892045065a46cb3487fb406bfb297e57aa4f7187cdeaa64181e4d82c","size":140426,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.17-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.7)"],"sha256":"5c60c0e32b4411b290d7a0169ef42fde0207876aead9fbbf9b42741bc27e12de","size":6606224,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"9608dfd66efa12ac140fd22d6b0ae1b83d324bcd0b6a5f17aa744177ea3d5140","size":3517494,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87618b484f3f331246a154bd7f60d37cfd9886a5a387b60040c554ebd698ae38","size":2644,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.12-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.23)","libc6"],"sha256":"b0fd147129b2e43d6f372e0ec8672e9b240b80972102582921b829282cc7bdf2","size":142344,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.23-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.6)"],"sha256":"fec1c17c7c876314684490ca6a0b6dee6a6c4113d5116e7a8cdce9bec436f8f0","size":5766564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.6-x64.deb"},{"package":"aziot-edge","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17499,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.3.0-1)","sed"],"sha256":"26d6e671ead2589047577db8abb90fa908d34c8431346bb6ceef761b546f7d08","size":4123540,"filename":"pool/main/a/aziot-edge/aziot-edge_1.3.0-1_amd64.deb"},{"package":"codespaces","version":"1.0.2579","architecture":"amd64","section":"devel","priority":"extra","installed_size":94383,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"de7608b5adef8a63f576ea96802f680897932e37f8d63435f586c2442e5a2ebe","size":27042980,"filename":"pool/main/c/codespaces/codespaces_1.0.2579_amd64.deb"},{"package":"moby-buildx","version":"0.5.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59965,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"6010b29f27c571b60622ed6a8e11df33fd1630238ba3158454d60426db674df9","size":20595128,"filename":"pool/main/m/moby-buildx/moby-buildx_0.5.1+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.10)"],"sha256":"ac987094f8faae67945a87a069a49e989972c16ca7cc9612fd2d5bfc739b9832","size":6609196,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":122140,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"6f526e67a6e04bd738ed8460f43ff18ad6f98742cc30782c66aa5e77b47237c6","size":33277610,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.19-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317712,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5dd9d213017e1885ba6031e313ee2a7fc4779f757e08de981cee0afbbc318a31","size":194122530,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.19-1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.32","architecture":"amd64","section":"devel","priority":"optional","installed_size":97,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"81fddeaeddf948e1b22963d5c9fb48d50368a5f8d7c208814726b546f31d2105","size":25252,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.32.amd64.deb"},{"package":"procdump","version":"2.0-16795","architecture":"amd64","section":"devel","priority":"optional","installed_size":10696,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f69c54d78708b84c27e90600fbc50a11392b384a92acb18e522d236d38113a61","size":1645762,"filename":"pool/main/p/procdump/procdump_2.0-16795_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.7","homepage":"https://github.com/dotnet/core","sha256":"d26aa9f96af6dd3fee9bd9e45e6520e31920bf3850eb872956da82a508c9dcbf","size":42692,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.7-x64.deb"},{"package":"aztfexport","version":"0.13.1","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"06e37c42e9ad8c3c14e99616d7a2f4ec05110017d81828bd93d5cab8663d5619","size":11882146,"filename":"pool/main/a/aztfexport/aztfexport_0.13.1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.2)","libc6"],"sha256":"835aa82ef1cd149f912a69a997286c5e44fbb2dec8c7ae5343cdf76d3afee16f","size":143898,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.2-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a2133041f7d9a6ee5ba65f79a4e146dab634865237b86cb9c4f15811e5571f9","size":2652,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.22-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.16","homepage":"https://github.com/dotnet/core","sha256":"ae49980e30d863cba720f34bfab96db9cb6966c22cb773685617c6f47b5175cb","size":3418406,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.16-x64.deb"},{"package":"msodbcsql17","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"e8b30d2949b6c5411825eab7996630498b5b9aa8a4f4affdeaa204fc07c0c15a","size":743228,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.6.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17468,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.9)"],"sha256":"5f4d6ca15089702f0247a710cddd9a99ff15a7129b1b3a98e692b6af500818dd","size":5768454,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.9-x64.deb"},{"package":"mdatp","version":"101.94.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":301191,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"03edc9a54c09ababa41a5f3886a3af2e1114b96c10cdf22eb2bd6c344758ed68","size":117484794,"filename":"pool/main/m/mdatp/mdatp_101.94.13.amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"6cc25729cc609a73d6aaf7940d0a2b66a6ed1d6414260343739fe5c10d863bce","size":1836,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017820002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213643,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"282746eaaf7422e389c9f2ab44aa148223c2d96e1febbaffebe86d822c77527f","size":54843396,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.104-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.11 Microsoft.NETCore.App 5.0.11","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.11)","dotnet-hostfxr-5.0 (>= 5.0.11)"],"sha256":"7bfb09b4a2578ead902561fe49319372f503ed5957daddb04ba30588f21a266f","size":21471080,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.11-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.29","homepage":"https://github.com/dotnet/core","sha256":"88479611946f8cd8c44c834899a935d356d2b6baca8d6ea9d7a2ee0e00c23f7f","size":42066,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.29-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.15","homepage":"https://github.com/dotnet/core","sha256":"99b72ef9f7882df88cebf3fb864c74a7ab6b42545cdfa2eaf92bbbfdd541544c","size":3415008,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"0379d716bb7bfe19bca7742d179ad1d15037c9ac15425b6978bd20d28c2d0ee2","size":420006,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.018440002_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.4","homepage":"https://github.com/dotnet/core","sha256":"3ca5ea3cd2a93dadf7e96b86ffbe70c8bf568f03337c8b0150503435da5722b3","size":3413198,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.4-x64.deb"},{"package":"azcmagent","version":"1.28.02260.736","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3c15e96bd33a66432e397062305c47f62d7e29cb1daca0984e5c8e7d01e51a43","size":53738666,"filename":"pool/main/a/azcmagent/azcmagent_1.28.02260.736_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.2)"],"sha256":"ec0cdcc4cf6ff7aa4f9709cd7b7f1c8177ae4a01acd69b9ca53d1cc924c0826f","size":1516930,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.2-x64.deb"},{"package":"acms-client","version":"5.25","architecture":"amd64","priority":"extra","maintainer":"dsmsdev","description":"ACMS client for dSMS","depends":["curl","libcurl4","libacl1","libuuid1","libxml2","gnupg"],"sha256":"51f54b378f67bd2fae11cadebb6da932d3af9c857f5802b69eede907d5d15b2d","size":984602,"filename":"pool/main/a/acms-client/acms-client-5.25_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"bff2289dfed0fb7f90d969d5bef78ce3dae4ec3c845d4547e315b3e74e018b8f","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.11-x64.deb"},{"package":"mdatp","version":"101.45.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":162513,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"135aaef60f21e0bc01e5705e4d42ad8a6f2551718b6d51f4bb5aef41e2650f4f","size":47102476,"filename":"pool/main/m/mdatp/mdatp_101.45.13.amd64.deb"},{"package":"dotnet-host","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9fae6c1552491f0df64c060a52d6a631582aeee38bfc5597edca6643c1b2d915","size":36630,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.25-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.10)","dotnet-runtime-deps-6.0 (>= 6.0.10)"],"sha256":"25d420ba348172b128109c37e20790dda6d089a335c200635667f52362d8ccb9","size":23009270,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.10-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.8)"],"sha256":"fe093d8c965519050ec012a273b54e80590c38b214e9f98ddeadd10d89a615e6","size":6605452,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.8-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"65b5db317c082fc2faa9894915697e991014e253c9eda7505f06fa19bff49094","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.26-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e8a462ade9d000c63ea23567d2c0f3ff1d44755e9827adb7e249dca5efc787f3","size":167356368,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3188-1.deb"},{"package":"dotnet-host","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e47b8abe42da934b27969dd4385546e97f8c2c09d83ff3bceb0e28e7ef15d5dd","size":57218,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"05b8dbac0076ac80c1abae45fe66cd04a9ff9e621b22efdfe45fd5301826708a","size":1306680,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.7-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"c404c8d4a732f60814a1cd15730e7f38cbeac70aa46e936dbe8ee7a6c20b1755","size":2567646,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.5-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"900d02b0c6113ac51a2410488ef4f46f6fd1b438f18e5c83a0919ab645622d2c","size":1315550,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.5)"],"sha256":"d04d176d380a33e36e3588f7855317213ecd0020decd6326d5bd6076401ddfa0","size":1513034,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c0cb7aab087fa409889a0da328d16c3f2cf97d848d329142bdd3deb1b1e8e05","size":70340358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"1.11.21253.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"04a8677f6b2b2a7369f174dab1fc369e2e060bdef902ad00973de3fd6402a068","size":49555540,"filename":"pool/main/a/azcmagent/azcmagent_1.11.21253.002_amd64.deb"},{"package":"moby-engine","version":"19.03.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7a951c2a0612ea1c189cab2f2279fa0628b0fc37077de48b6ccba00ddebc4a89","size":22526996,"filename":"pool/main/m/moby-engine/moby-engine_19.03.11+azure-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331351,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.307","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"cbd5a89006370129d484ecb59bcff70b18644c2bfef2da621834a0d02d15721d","size":85122482,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.307-x64.deb"},{"package":"dotnet-host","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a8914e4e15052ff97b39824900a87f0538d3d5d56afeac61c380149294493c5e","size":52532,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.17-x64.deb"},{"package":"msalsdk-dbusclient","version":"1.0.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["microsoft-identity-broker (>= 1.2)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"d1d1eee986c6181db1937e2a44eeb32f0c53aa5f1397c978f06f0ad15d147c50","size":9930,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"30084161440d7cc15252df8e8cb53c6e653147e16de3df7b1ee25102a2bd251c","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.5-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.7)"],"sha256":"6ed9010d53b22a0086294c5384801605284bef8d1e2a3429d5877dd6a4e9449b","size":5767600,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.7-x64.deb"},{"package":"dotnet-host","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7b4745302630fe0cf936c6e1b1eef87cf29db06de5a03d62b4196e472d5e305","size":36580,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.26-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc93+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19335,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ad97bc60927a1ee6045cb2db4bb36b983bc8f18092f82eebdb0b7f8085a65794","size":6436176,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc93+azure-1_amd64.deb"},{"package":"kevlar-repokey-test","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-prod"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-prod"],"sha256":"c7ff8b5f9532cb585cb50aea395535024cb9934c7e1219e3261f91f639543673","size":2500,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-test_1.1-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1056.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"72bdf3c72584eead823b7588b371262ea28b09d7d884ceb895abe84fff3f32c9","size":226518346,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1056.1.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.22)","libc6"],"sha256":"c5a1b053ad7cbd575809bbfab15fce0bd2ada12876d7a65583c441f0d95e311c","size":142392,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.22-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"e0a9923e22f6202245812d62a3cca02b524127bc7ed77840ad5d58ee33b8afb7","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022600002_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.17-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317445,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"ca210b6bd54ec06e3f7bea285b80df66e2054aa438b97b3a63223c8cf65701aa","size":193991608,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.17-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.200","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"54ad60c1a3413fcbfb5c9490adeb39a8884935b7dbc30324f279ba4091fee6d7","size":57258152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.200-x64.deb"},{"package":"aziot-identity-service","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"51f980280e4b34d1398bb78f0227cc020aa41cd19356346afafb21f24d6ad124","size":3862532,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.0-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"012eb465df8a50284c49d0e37940e4bb84a88600094c7b706e5b15ef724c1333","size":69447560,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.8-1.deb_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.4","architecture":"amd64","section":"default","priority":"extra","installed_size":27858,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"bf244b9c2ef285d31785405e1d6a9ef97b177952dace823330f8048e65012736","size":13148292,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.4-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.11)","libc6"],"sha256":"11d2256fef69f75655ff54b6efaa710980f7497d1ee213953881753cc4ec6be1","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.11-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.25)"],"sha256":"b3de39c43b81423eaeb7b2b4821152495d7e2c35461e3c1d089c4f2579930be3","size":5772068,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.25-x64.deb"},{"package":"powershell-lts","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0ee622ed63628b45ecd297847d068fd0f9ce6675cf82bc19c83f6bf89afe1791","size":69415978,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.3-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160411,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cb98c746e36a959a3fc1be9fd03ee2eba47d0f1ceebd3a6bb4a9b2afd91aedea","size":64879422,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.8-1.deb_amd64.deb"},{"package":"mdatp","version":"101.29.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":148771,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d584e20c8fefa3ba05135655f2416365e99fa078568a3144226eb592a935bd4e","size":43943754,"filename":"pool/main/m/mdatp/mdatp_101.29.64.amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.8 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.8)","libc6"],"sha256":"ac92bef47efbbde3ea36ca981cad17f3abde3b8145fb79dad3ec86d2f7a3365d","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a582fa1a887fd86b3f89437139fed370f37f8e1308581ca7ae2b9f609d4d9add","size":25986352,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec63ccc3628fd4e5e8013bddae353225110503aa7786fd6d9c1509aad2af3f2c","size":55874,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.10-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.5","homepage":"https://github.com/dotnet/core","sha256":"cd48ff631f943efeb568d7434e11095a4523a5ed11c26ad893c1640385ee15d4","size":42722,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.5-x64.deb"},{"package":"msopenjdk-11","version":"11.0.16-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f5b62099a636f842c0e90a9103c58fabb5c7784c94fd98d44161755b36e260ff","size":193647354,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":680,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.9.0~beta.1)"],"sha256":"ede9b0fd7cc154335a4a8c0e38326e8584d2f571a20e826f5eab08d2764e27e6","size":148154,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.9.0~beta.1-Linux.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"d5a34d329b246897fad6bb370f397682cc40e40ee6a331530beaa6dbfbdadc0b","size":361020,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.1.2.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.21 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.21)","libc6"],"sha256":"b64dbaf4efff1814b6653808020f98b1b0008f323af9a84fcf771e972d624b78","size":120854,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.21-x64.deb"},{"package":"moby-cli","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"56c45f3c9cf67943f5e2ea6a1d3b51eb7fb64437b6404c6b53e21e99a369f6f7","size":12155328,"filename":"pool/main/m/moby-cli/moby-cli_19.03.15+azure-1_amd64.deb"},{"package":"powershell","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"27ac4fa4f3e7f0934afb4883df21e572b3d9650e17221d0f3f288f250a92dbc9","size":68350538,"filename":"pool/main/p/powershell/powershell_7.2.15-1.deb_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"c278d3834aa12a985f0fc920610f3f8f59a1f223bd27115395f4c3d973d3885d","size":2588278,"filename":"pool/main/s/scx/scx-1.6.10-2.universal.x64.deb"},{"package":"aztfexport","version":"0.13.0","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"5b991791b757e7205e56bf05ed9942d8c4bd949d3cd8e862b18414924a4c78ab","size":11881750,"filename":"pool/main/a/aztfexport/aztfexport_0.13.0_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"260bdf499e815b7f8e4f85f5feeb15df78a07c39ce04899c12b856446f1b1a65","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1625.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"93590808e1510dcca63c0356c7ce287f5f4fd58de266252d78f498677a1ddfb2","size":219877974,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1625.1.deb"},{"package":"azureauth","version":"0.7.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":59271,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"660f183ab8d44e13e9c1755b4cb16fc38112f348ca67da470e585876b4c76770","size":19023014,"filename":"pool/main/a/azureauth/azureauth_0.7.3-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324342,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"56009bcf7b9c08524d134fc97b99611b05d96884feee1a6de79e1e0269dc13bd","size":164702238,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8.1-1_amd64.deb"},{"package":"moby-cli","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e59b8af8190363dfa05acfcb7d68ac2be9d2fc27b6d327cbba81c8f5de5dc7f","size":16397016,"filename":"pool/main/m/moby-cli/moby-cli_19.03.14+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19893,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.21)"],"sha256":"9a74c3e3e9c66283bbf52f3cc6706555ed222a77f5adb68be201ecc4577cd04e","size":6618446,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312663,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.106","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"5d0cb323acfadabde60420dafc2beae59b9c7e50949be88df6c5c4fbfcc8a44e","size":77747042,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.106-x64.deb"},{"package":"azcmagent","version":"1.35.02478.1194","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"34ea6c2cfcbf593546d19bf6de0245008ba19c5f57d6562e7b9371792ae03279","size":55205234,"filename":"pool/main/a/azcmagent/azcmagent_1.35.02478.1194_amd64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"359c86bb4ef6fcb9d7aba0b4e52a26be110bb61ebd32ee8a3f30dc78604ecd63","size":21264,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.13+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317057,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f186bcb7e5329090a4df46ead70dda124429a977e408c6f1964d6c92f215104c","size":193475910,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.13+8-LTS-1_amd64.deb"},{"package":"mssql-mlservices-python","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":6168858,"maintainer":"Microsoft Data Platform Group ","description":"Anaconda Python for Microsoft SQL Server Machine Learning Services. Provides Open-source distribution of Anaconda and Python","sha256":"ff410d1eaee1c05e846b57a7125e7b1135eeceb44f8e46d21b4380abaaba0efc","size":1405022092,"filename":"pool/main/m/mssql-mlservices-python/mssql-mlservices-python_9.4.7.958_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"45b99186d653c5da137cb970f760ec552cc19e34867f0ea9538231de09167369","size":499988,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.4.deb"},{"package":"aziot-identity-service","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18807,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"c99435b96a6515f009b7fb5c80b871c92f5af551af132b4921b7097cc1d3b395","size":4024220,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.3-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.12)"],"sha256":"b942920b01885f1ba0980cbe3bee729b059b8f24a90069e95cb4dc2b74a30afc","size":1530422,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.409-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.409","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"abd49223df11a97d89158a4a6ea5de3a67d247d612913352086f8c7178405fb1","size":48416056,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.409-x64.deb"},{"package":"mdatp","version":"101.68.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":211880,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"f30d0cddb2341e50f82bd4a46e1b70a3608e134ab4ce03e894757c4b6e207a05","size":62043662,"filename":"pool/main/m/mdatp/mdatp_101.68.80.amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86241,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"280d0c96ffd04c2243f8dc97867a5f4244a862e38776c202d55daf9a4bfc47e5","size":20499414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17435,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.4)"],"sha256":"55f9fbaf87977ead5245675615f9587d512a55010d5916b9f8f728cf56214cec","size":5761980,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.4-x64.deb"},{"package":"mssql-tools18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"084728b16bcd4861296281290d731d22905fd298b6c2fd76036bf07314b6e952","size":211806,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.1.1.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350038,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.105","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"ee86e6651c1e00b627ef3f7688ca41c0090058df0c2508c638404e7bd64753c8","size":90637070,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.105-x64.deb"},{"package":"moby-containerd","version":"1.6.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125895,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"649ee53d05248a2f3807119389b0208ea7abd7a75f05219f6e6431767a140727","size":31599602,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.815-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241065,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.815","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"612d37eeb142fadbeaff254038fe55f184a1d68f8e1b92468f07f61e2da95d79","size":91759364,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.815-x64.deb"},{"package":"dotnet-host","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6a4b0bcc39800ee3b0afc3abc71e91551e1b91ee64ccd7af3cf27b6d5c9d58bb","size":32466,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.17-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3331-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"2853c3da2add0aecc4c72bd79a045acb8b235fe29c73e55b917fbcfd4e5612d6","size":208736172,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3331-1.deb"},{"package":"open-enclave-hostverify","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"5e644c718af535a268e77c82d77879dce7dd9541d158b1a199fa92b9a6fc608e","size":838568,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.5_amd64.deb"},{"package":"deviceupdate-agent","version":"1.0.2","architecture":"amd64","section":"admin","priority":"extra","installed_size":5423,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"42b39f5be5b2e5224b3b7f4b5a789a7791c941afdf264bb5dba99d06a317086e","size":1977950,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.2_ubuntu2004_amd64.deb"},{"package":"dotnet-host","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.1","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"99fc197b20902186c6aebc85aea822570d0e203080d1190275b378c3a360ed4b","size":52842,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.1-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"d0cb227c89dd60b7bddb22b19457285b3865273a265bf54e5243fe4a0d662f15","size":8784,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_0.6.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"20522a063dd32fd8072a9af2b3beec664bb5e44131841f011ac4287ba4278afa","size":227751104,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4806-1.deb"},{"package":"moby-engine","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117374,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a09a4f83339d5aea4d0f206f7e2b4ebc0b0ed1e375a01a9a9c0398f7f8b6f983","size":24736660,"filename":"pool/main/m/moby-engine/moby-engine_20.10.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.808-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241389,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.808","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"a05f869fc620f9c8e5be98508928d01911590bfb109eb88f924b5fcfe4f4ae57","size":91790784,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.808-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"c267904d0bfcdd06c48b26ca377b1d4cbe1dad8ab24b663809b19c33369c2995","size":3521558,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66340,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"0fadad0de7d30f3064e9218da272bf5501234f9d6385faece7b444acde72d344","size":22795548,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.124-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314393,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.124","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"b12b9b63f859b0eb365fc0aaa9d7995add2a24ddc02e0df5602372b51e0a25d3","size":78926170,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.124-1_amd64.deb"},{"package":"mssql-tools18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"29cf926ce277c710766a2aea8f755474c67002f0cccbd1293993d83c4f636ee2","size":211366,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.2.1.1-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"8b1e8e8539e5a5186bd52c168d7fad2a912d0765a999c0e7010444941b7ef402","size":2131114,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.15-x64.deb"},{"package":"azureauth","version":"0.8.2-3","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"48c9c5389d2a1728fc93ba81812d5de5d80f06de5620f2b39c1812408079e1f5","size":24113598,"filename":"pool/main/a/azureauth/azureauth_0.8.2-3_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21357,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.9)"],"sha256":"9966a7144980e0c2bb7e0a7d9dcede9248b401f6f25029a42072500831a77fb1","size":7059802,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.9-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.206-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.206","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"4ff2bc9e1710927d8c8f3eca32a654e799e580e876b5e692f3fbf4a22f4ea9f3","size":57699996,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.206-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71113,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.27 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.27)"],"sha256":"01277316792615af37048c0745d1281bf8677c1303935882af1f91904fe4d422","size":21987372,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.27-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227565,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.404","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"5c9eb60dc14c3de77141c0ce7146896f91f0e45fa19063fff45f29c3b4b44b57","size":58920910,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.404-x64.deb"},{"package":"mdatp","version":"101.71.18","architecture":"amd64","section":"devel","priority":"optional","installed_size":212129,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"a01be3805ced294071b50ec817aa52dd7e3ed03907ca1a14690f0bcad2e1ce46","size":62151012,"filename":"pool/main/m/mdatp/mdatp_101.71.18.amd64.deb"},{"package":"moby-compose","version":"2.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"13f2b881b89fb6888d9c760056f474e8a957a0302556227543fcbaddfe0390ef","size":9569480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"69f10e4842ea147f09de31260716f8ec225c4b37db721d03392a6719cd0ff0ea","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.0-x64.deb"},{"package":"blobfuse2","version":"2.0.5","architecture":"amd64","section":"default","priority":"optional","installed_size":31350,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1f399da94f337942d78995cbab448f88552e7107e2ebbd885d463b22a2bd43f8","size":15490920,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.5.x86_64.deb"},{"package":"scx","source":"scx","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7920,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"120ad5bfed144be98b596a7130ab6ef75590d602f470edafe496b92cf95bb84b","size":2748240,"filename":"pool/main/s/scx/scx-1.7.1-0.ssl_110_universal.s.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337182,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.407","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"6749bdafa013e4681150e83b49102e7dabe276d5cf2effafc74505b597dc63ba","size":86699018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.407-x64.deb"},{"package":"dotnet-host","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f80582e30c742f2e0615eb456535b98524fb0036af163b40c5ea8b52d85fc35a","size":32404,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.19-x64.deb"},{"package":"powershell-lts","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"e8a94fca555dd774d7c942d6892082637b811b8eb3eddf1a6820033d833d156c","size":70503936,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.11-1.deb_amd64.deb"},{"package":"moby-containerd","version":"1.5.16+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109065,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"70fff5c28bf9a65ff9119757a923d7637402b84b3715be6c57fca005f3792e82","size":26803798,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.16+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.2 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.2)","libc6"],"sha256":"eede5e3518991b6b207259660751fbb2803afd10578863c00cb113fbc03aa6c6","size":140760,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.2-x64.deb"},{"package":"mde-netfilter-src","version":"100.69.59-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"a804fafeb8c74bca1b8344740b45d39b1dea55e65be9f73d3d88fb2eeb1f3643","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.59-2.amd64.deb"},{"package":"azapi2azurerm","version":"1.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20460,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"40aeaab74ceb13e7c63047f68992d326dc4b23bc3e2e3fa32200ad3cf4fe5481","size":6693854,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.0.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"31c882bf5eed107484514717267ebef2535552d8a5b6477a53d70923dfd2e1a2","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.19-x64.deb"},{"package":"blobfuse2","version":"2.0.3","architecture":"amd64","section":"default","priority":"optional","installed_size":27909,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"ff605bf4122ef16eb33411f58240594c45b411b2807431f7a7c8874b6f0ce9fd","size":13181856,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.3.x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.5)","dotnet-runtime-deps-6.0 (>= 6.0.5)"],"sha256":"d62ec2da2962a43a5f0dba56da7473a91a592f5bd93c660a73f4485ce92e9f70","size":22586332,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.5-x64.deb"},{"package":"libmsquic","version":"2.2.4","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"994d24a840e636f75a59cac0674627ac661e864268b6298f004d9e2044c87aa5","size":4575380,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.4_amd64.deb"},{"package":"mdatp","version":"101.98.58","architecture":"amd64","section":"devel","priority":"optional","installed_size":306955,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7bc64225075faaef53ec1053f82c96afe64ed8bc676f2c1306237d7c6186a253","size":120343942,"filename":"pool/main/m/mdatp/mdatp_101.98.58.amd64.deb"},{"package":"aztfy","version":"0.9.0","architecture":"amd64","section":"default","priority":"optional","installed_size":46316,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"4724f2facdb5c23b9913f23d89b10316d6cd5cc320fdf436bcf68d6a0b16f8ab","size":8770940,"filename":"pool/main/a/aztfy/aztfy-0.9.0-1-amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13096,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.10)"],"sha256":"8bab05ba98fd4ad4daf82e5386008bbce86e9961c6e4435d2e9822da843bccea","size":1510954,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f84e4d0753808e6bf67444aa83bc1d8da29e5fd367fb7cbfd90bb6b531568201","size":1305948,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.0.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367125,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.308","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"14819de0322cdb8b9c824ad59523ff57988c1d0bbb84c34e8d76e39797c1dbc8","size":96633586,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.308-1_amd64.deb"},{"package":"blobfuse","version":"1.3.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":33123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.7 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b84b62cb202e0c45feb5d4dfb0b183e4442f48c36d7c8949578aba10a9cfb843","size":9462010,"filename":"pool/main/b/blobfuse/blobfuse-1.3.7-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70793,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.2)","dotnet-hostfxr-7.0 (>= 7.0.2)"],"sha256":"6df99d1c834135ebb4586f8a416716cc691285d5528fc2d08075ec060227016b","size":23188610,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.2-x64.deb"},{"package":"azcmagent","version":"1.32.02371.983","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"e89390a265f126952d225d40a5c4e58014a32c20efc573868674738097b08b5f","size":54306730,"filename":"pool/main/a/azcmagent/azcmagent_1.32.02371.983_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"c663e63f79bfee8b76205b03bc7bfefe282becacf8a7dd98b380354d42988521","size":1315494,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.18.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":122248,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"f5ea248d511c8221f0363d2040271758a3ca7f2d642edcd66c36f5006311b5ec","size":33299982,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.2_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.17 Microsoft.NETCore.App 5.0.17","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.17)","dotnet-hostfxr-5.0 (>= 5.0.17)"],"sha256":"a66dde139e264fb73a05421293609413126d5b7928141138e78f51ed2b2be568","size":22011822,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.17-x64.deb"},{"package":"servicefabric","version":"9.1.1592.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"dbe9072890631add3bfa35454db4ad5d00d62d5bb54935780c4826e89eee081d","size":219815274,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1592.1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227617,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"698e5de0f8650f096a70bec60f0ae3bcc8a661729e438a4c807ecd3b579dd4c6","size":58837002,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.405-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"3a1c44092c90f674e400896b1bdb629091bc899774ef03d80a6f82568743069c","size":3522342,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.24-1_amd64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"60a2432bb916841fe75f77b9a6bb26417c68c7ee34f783966f6ddc20a39eb167","size":44742130,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u2_amd64.deb"},{"package":"intune-portal","version":"1.2211.21","architecture":"amd64","section":"utils","priority":"optional","installed_size":18507,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libatk1.0-0 (>= 1.12.4)","libuuid1 (>= 2.16)","libcurl4 (>= 7.16.2)","libsoup2.4-1 (>= 2.4.0)","libsystemd0","libx11-6","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.16.2)","libc6 (>= 2.29)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)","msalsdk-dbusclient (>= 1.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libglib2.0-0 (>= 2.12.0)","libc6 (>= 2.28)","libgtk-3-0 (>= 3.9.10)","libssl1.1 (>= 1.1.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"696481ab2d249391918d008691058791c138b82f0300283654841dd181036dd4","size":3310888,"filename":"pool/main/i/intune-portal/intune-portal_1.2211.21_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.29 Microsoft.NETCore.App 3.1.29","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.29)","dotnet-runtime-deps-3.1 (>= 3.1.29)"],"sha256":"82a0de75f01251437d155681b4706eb56438e2fca21135d1dfb4d3b3a44ec74e","size":21619890,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.29-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"0659506cd6862cdcce62768918ea580c070c1249a0e2e5b0aba323891e75bac7","size":1314238,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.19-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.26 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.26)","libc6"],"sha256":"8fe6a2130ed312ada320642f2307bf2d5f668e5ddb17403914a76df0486cceaf","size":120752,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.26-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"8390b688082ac2020be3ec1b6e2e900c224ce58bf8a9aea9ec5de177c03afe2c","size":499500,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.6.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"e3c05b2bb27d1b332e34d4363b72cc8ed6d47a18f278c5fd9d4ad65502695184","size":3521786,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312667,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.108","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"06d2325a3a1310f231bbbf0d1f4428fd71934e0b448fb30a458f5a76235b3fa0","size":78002896,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.108-x64.deb"},{"package":"powershell-lts","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"12f24124a2908286b81081866fc63562dbff0aff63ed85bf4c2140772da3bc78","size":68354770,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.15-1.deb_amd64.deb"},{"package":"mde-netfilter","version":"100.69.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"212e84e652d7b1591429bcf4e6acefee0fb3ba3295b8a2e64652cd8235058974","size":24424,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.62.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189498,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"bf51063ba56fb5033d15f759affb4361ce8a467d1c6f4a8a93f3c68c47f7ae7a","size":48250240,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.9","homepage":"https://github.com/dotnet/core","sha256":"6b16c95467e30e877a45ce38aa28accd9e8bba195289248e8fd212240226cff0","size":3406414,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.9-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86953,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c87c63362406bb6146c525d1f89d08283be4df96fbb3fe748a96c83667c02c09","size":20692210,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"eca7883022d9968c8ce2e357230abe4fbae1df472f490c13428a988275d34527","size":24420,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.48.amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.19 Microsoft.NETCore.App 2.1.19","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.19)","dotnet-hostfxr-2.1 (>= 2.1.19)"],"sha256":"51d29f4bb8769d6a799558f31cdcac99ece2213ba632c201c7c3b908cdb05a62","size":20646700,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71092,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.25 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.25)"],"sha256":"853db00bda315f9542a5e538a7e4c6c56203de0e47b58c51cae0b965936f33a4","size":21961714,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.25-x64.deb"},{"package":"mssql-tools","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"750c5e413db5a154dd708e85bbe3ca11bdfa1bc9093a898934e2a858c8336ffa","size":210704,"filename":"pool/main/m/mssql-tools/mssql-tools_17.10.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bfb537fe76a7537389d7bbb2184fbb3d47c2507d5618fc6dc6cee489de2cae96","size":124528228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4736-1.deb"},{"package":"msopenjdk-11","version":"11.0.18-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317542,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"aa8b4fef36b3105c2da2fa5115c1e6ad1db05059a113a3848e821a26190bbf5d","size":194035104,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.18-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.4","architecture":"amd64","section":"default","priority":"optional","installed_size":31358,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"79198abd87f82ee46b1b894d0ef873e93cecc508316e93893b5db322fe0a114f","size":15490958,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.4.x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"8eb9366b0a0a45e0231704b408fae41733d283c8d663e90189aa3b70a333ae54","size":3519112,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.23-1_amd64.deb"},{"package":"aadlogin","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"4e0471d3b89a07c159e5e7f1ffee0ad6a2a6b98941a5d2dc3310e5f65f9dc483","size":407452,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015280001_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":513,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.11.1~beta.1)"],"sha256":"6e6b028987de0f3a3d03868ebdc4bdb403b10a4f83f5f0ccfd4d6b666cfa19e3","size":79986,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"mde-netfilter","version":"100.69.59","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"9bb51091801bbfa8979e90de219b80ae4ec77bffbb71d63ee87a68242af631a4","size":24414,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.59.amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.8)"],"sha256":"3064914f58f7f230a74bbe0c9c22e9522898f8f8005999ca536f4a429e0a8af9","size":7057918,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.8-x64.deb"},{"package":"aadsshlogin","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"5b9542c5ba271ee38580d8152f8ddc13869037e74124e4a9b567458017d36a59","size":418790,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017190001_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68462,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.21","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.21)","dotnet-runtime-deps-6.0 (>= 6.0.21)"],"sha256":"94954b3e7667d6fcc8c6f2de4f07602653cba4b8419edaa41eacbc205c931466","size":22867970,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.10)","libc6"],"sha256":"fc05aaf053f3306f2dd18eaabb047097e5fa1609afafd5c0f529072e39b8de6d","size":143938,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.10-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"645c4cee097414d061a02cfb148b0d54274dd6d9ca06367c61d12ceb0fab4dd9","size":26982140,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.11+azure-1_amd64.deb"},{"package":"defender-iot-premium","version":"0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender Premium","conflicts":["defender-iot-micro-agent"],"depends":["defender-iot-micro-agent-edge","sim-agent-edge"],"sha256":"a4a5179f8c2fa455fdcabfa4bb288fc31f2f75b6af0dbaf0676623e747cc9a3c","size":1272,"filename":"pool/main/d/defender-iot-premium/defenderiot-premium-ubuntu2004-amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.20","homepage":"https://github.com/dotnet/core","sha256":"8ec70663d512ed443c4527fbf447b29676fe3ce69bbbbbe58912fa3324d3877b","size":42028,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.122-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.122","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"2a8ce53fc735ccd1336abc88949ec01164b53ae92e73113ccae284426808466d","size":78881346,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.122-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"18ff586f6e58d8b0b92e371f3dd23c2cc107c1c943be1479a122a1402ac4ba81","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.110","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.10)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.10)","aspnetcore-runtime-3.1 (>= 3.1.10)"],"sha256":"0c4febbe0a5031c9497be65082e34fc8f869d707895f1c4368db61edd6a2afce","size":43155386,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.110-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.3)"],"sha256":"d0ef9c1f3798088ed85efd5528038d2f49bd1abfbf925ab1650ee00c259c2bee","size":7051750,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169170,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"576b137e96a3853e87d2595efd06c8acdda6746bc9e207ace3ef7ba7b18a1747","size":67026634,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.7-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f43df5cc056e4efed7fb1834c85c21c1f63af3af9cdbd4a2567b4c62a550d3e8","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.31-x64.deb"},{"package":"powershell","version":"7.1.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174320,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"23639edff0487fe084d011767c67d35d55f37a22bd00cd0bb48acddff9f217b8","size":68283752,"filename":"pool/main/p/powershell/powershell_7.1.2-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.12)"],"sha256":"49778ed3574083e50016311ef9880a9e056a3b1a22e927de7c2d85c788b034a0","size":7064358,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"moby-compose","version":"2.6.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25720,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"96719d676128a6620f9a4c2d91f69f65455d8167b6e4206e827f22b3d65fc8b7","size":6499556,"filename":"pool/main/m/moby-compose/moby-compose_2.6.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"953f95560f7fe014ac2e89b4ad6d1113f9d88deddca6a571f7d1d1346e59fda4","size":10262,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016820001_amd64.deb"},{"package":"moby-engine","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2b0072cb4de51dff8327d7222c6054095c880d97195c59901a8003fa59ac2637","size":21175036,"filename":"pool/main/m/moby-engine/moby-engine_20.10.8+azure-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.3.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"3e270e63a81f5cd729afb1f69b43e9fc648f010be900068fab4f30bb4a4adb7f","size":714818,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.3.0_amd64.deb"},{"package":"aziot-edge","version":"1.4.16-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18513,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.5-1)","sed"],"sha256":"ff467929857a81cc3ed6261aef74323ddb423eac938de832e6cfdb3ed342b7a5","size":4430372,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.16-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"f74114d6282233fc1ba4f5a15b0edf94e7fdc5e5bae13a90917abdfdc228b4ad","size":3518666,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.120","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"e52be3bd6881374458c71b2415dd9b161c2afef6aa9ccc1a39efea053dc86ddc","size":43996192,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.120-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.4","homepage":"https://github.com/dotnet/core","sha256":"36ed81ddbcfe3d88f50af12c69fb776ead270473b859e19241602a53b8e20855","size":42468,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.4-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"860018d9b9d9d59cdaea249e76b894d970cf2084d4cf1f6786f623bcb7c7d378","size":3520576,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32a124e361da79d71007cf8a9f1c916ba7fb543d06eae504eeb58e23cd9bfe5d","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.23-1_amd64.deb"},{"package":"moby-cli","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b884d901dc121f68973e86cabe6897dc4d75ef36073e482d300534af94c65518","size":10578864,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8b9d47e868ff588ae5bf664488ca477a135250c95710fb182347710096129c43","size":135288228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4483-1.deb"},{"package":"aziot-edge","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"52e552d29d0e63e170389d07dfb35d8fa7d0e7ac394ca2a96521cb3aec48112b","size":4204528,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.5","homepage":"https://github.com/dotnet/core","sha256":"4c87ab48a41bad9380eb738078c16a08cd6e1c2de4b31c231f5418f7102208ad","size":3399662,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.5-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":44,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"3f47623349ef8ebde89e3d52415ef854a84553046421036404ffe9d74bf3b4f0","size":9164,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.1.0_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"28dd20f6330a3450e23fb0e4c179a25e3ed71db7d3722c1e55089040432c22af","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.8-x64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":118172,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbd03457376c4da1098fd64f88ba7e1c9364d3f54a8ef3cc300102bdcbbeab58","size":24574184,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-ubuntu20.04u3_amd64.deb"},{"package":"azureauth","version":"0.8.2-8","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"75cbd72c69154486be29fae15d943f345260e9433353f1199389e1cb80a99bc2","size":24118802,"filename":"pool/main/a/azureauth/azureauth_0.8.2-8_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367152,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.310","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"a3cb0afabef1917d15235dced239ab22071c829da8f8c0122e66e9fa5a9eccc3","size":96615326,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.310-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.29 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.29)"],"sha256":"e543e97c14378c663703f2ffe643bfbf449b8093d73be0d4f64779602f64a070","size":21914140,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.29-x64.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":69097,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"3205845143e75adbaf2df5d4acb2925d86917e3e17c4f3945938c363bbd2d387","size":25966666,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.18 Microsoft.NETCore.App 3.1.18","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.18)","dotnet-runtime-deps-3.1 (>= 3.1.18)"],"sha256":"48350737cda6361ab38e083a455e27ed00a126413ff867c79763b75eeee7a381","size":21887942,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.18-x64.deb"},{"package":"moby-compose","version":"2.23.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58369,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"1c094bde70a1ccf9886c162cb47c89f75ecdf2ba9cb18ddc604b231adc458f77","size":17592370,"filename":"pool/main/m/moby-compose/moby-compose_2.23.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.14)","libc6"],"sha256":"06558a79a1f4004ee029c0ca5e06635ee771f3379b28e409cdb9126c8fa4de71","size":142366,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.14-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.28 Microsoft.NETCore.App 3.1.28","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.28)","dotnet-runtime-deps-3.1 (>= 3.1.28)"],"sha256":"e5245eb6ee751de6929b08e564b1bcc76b8b6190fe761e5b56963dc941a25948","size":21822608,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.28-x64.deb"},{"package":"mssql-mlservices-mlm-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549275,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Full install). Provides RevoScaleR, MicrosoftML, sqlRUtils, olapR, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-r"],"sha256":"59c5558dc8065f87447538df2e2a2bd5118a773a8750718a56b1df090443b277","size":521701410,"filename":"pool/main/m/mssql-mlservices-mlm-r/mssql-mlservices-mlm-r_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.28 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.28)"],"sha256":"138e2838b892d92a0bb3b8236d72987af65ed9451f1dd1ae03f920ba6cec17de","size":21905448,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.28-x64.deb"},{"package":"aadlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"8221a88f2d61c55eb5d477e261c47b51a03f4afe49954c93477d62480c32b7f8","size":413684,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015950001_amd64.deb"},{"package":"azapi2azurerm","version":"1.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20660,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6099cbc085feae459ba885b688a11111c95bfecb321da7a17f593e4b8da3a339","size":6709814,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.2.0-1-amd64.deb"},{"package":"libmsquic","version":"1.5.0","architecture":"amd64","section":"default","priority":"extra","installed_size":5560,"maintainer":"<@28646e3e24d7>","description":"no description given","homepage":"https://github.com/microsoft/msquic","vendor":"none","license":"MIT","sha256":"f7307dc9be7a8a671898029392352c23a30099c8ef201826c2ab6ba2ed935e10","size":1813382,"filename":"pool/main/libm/libmsquic/libmsquic-1.5.0-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"71a3aa22666f1348e84d2d308db567fc5acc7dc3877c7b4d329f4bc1c0b587f3","size":2118644,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.18-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-3","architecture":"amd64","section":"java","priority":"optional","installed_size":325465,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"3ea7875f7ee282162012226e206a40de9f8d2d2de720f41f573a45ebeed08bb1","size":165338790,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-3_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.19 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.19)","libc6"],"sha256":"fa4e79024e7b1101e088c9d2ccdb16025af516c3aa33706257d2e1395b99ccb9","size":120914,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.19-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"3ba76caa0397c4cc1c8dd81fc6fe321c59870850faafe53d6c53993410462ae9","size":837980,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.6_amd64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbc4785935323208e52a67294c91e4a2942fc778688a04c1d5c2bfd10d40fc2c","size":26990272,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-2_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"9f9fa8ff87294acd3d2446188eb19a2450dcb4735b8af9ea00d44d23bf664405","size":500628,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.20)","libc6"],"sha256":"38f6d045ebf8dc7b6b1c554a4d81a8e59e50e90438ee9b1fd76f594047583d3d","size":142360,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331325,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.305","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"0d00a3ebb16ac569861b16c79c64a094ae0460767206c4a0663d85010a758286","size":85062916,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.305-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3160-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"aa2bf4e9c55be59f76b3adfa80c2e189a1ffdcca908b6fb786317a9b891d1727","size":204037628,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3160-1.deb"},{"package":"powershell-preview","version":"7.2.0-preview.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160448,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a28a1d06c3790f9cb1b5fe7bf5df1a72bf01f8dcaa9bed1c53656739d53c64c","size":64902476,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.9-1.deb_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.10-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"3324fc1a3204b8781d018da00b427a4600e3af44b8fc28a04326913de802ac2e","size":13190,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.10-1_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.27 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.27)","libc6"],"sha256":"2c9e779ee95dce861cd6d2c8d14d37dcf560f4ad982235af86664ad4c0c68eb6","size":143614,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.27-x64.deb"},{"package":"open-enclave","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":113754,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"c4957ceca38fe897f2237c396a638f6ca03deab9b1e2087809eae77f13d2c2ec","size":31095302,"filename":"pool/main/o/open-enclave/open-enclave_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.18)","libc6"],"sha256":"9930731bace0066046b2ab6be0886548e62a4f0b12aa72e8c59b58f93c88e117","size":142484,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.18-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.23","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.23)","dotnet-runtime-deps-6.0 (>= 6.0.23)"],"sha256":"aed16cfefc6903202f11af5aad5728f6eabe5905221309097e9d5dd60bfd2e29","size":22882640,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5c6f1d1609d7f1566ddef53416ae4d63c1fef4c001eede265f66c1b930ef0a33","size":228285872,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4868-1.deb"},{"package":"codespaces","version":"1.0.2804","architecture":"amd64","section":"devel","priority":"extra","installed_size":95227,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"7ad79a3bcd30c42347e465cab0ae379591a52ae01aeda160b2e00e9a46bdeaa2","size":27017990,"filename":"pool/main/c/codespaces/codespaces_1.0.2804_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":206162,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"573b9336334b5e4df31df0fc62ce82f186770a569d501fc643e15ee68262740b","size":74245238,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.2-1.deb_amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"55a2cad0d17fd8068f2bda66b83a4bdf0c55ce9a3e5ea859d7effe06ecab1cc1","size":485628,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11-1_amd64.deb"},{"package":"moby-compose","version":"2.17.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52638,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"314a1812d59c17901c1a0506d25f44883c3c9f972abb21e0afdd22510aee19ac","size":10850714,"filename":"pool/main/m/moby-compose/moby-compose_2.17.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c707b0a5897a613d1e36df579699cf01283ecd255b85af60127d204b21f1ea04","size":20971950,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.25.72","architecture":"amd64","section":"devel","priority":"optional","installed_size":146402,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d7a8f56970f48dbc7ea30a611e68cb9afcd91d5603c5ced0df51329920211bd5","size":43263098,"filename":"pool/main/m/mdatp/mdatp_101.25.72.amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"fa26dcf2fa4f3895f94b0b7d772794f3ce225ca3a48fde0bd0b2c62b73b2dba8","size":10166,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014760002_amd64.deb"},{"package":"azcmagent","version":"1.21.02043.328","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3e6cd4ad741a2f5ce1aa8320733a88dcaecf13ad35f48833da8fff7ede193603","size":53305240,"filename":"pool/main/a/azcmagent/azcmagent_1.21.02043.328_amd64.deb"},{"package":"moby-containerd","version":"1.6.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"61b4d8602bda831abd9f42ac170b83403ac9f5836d6d31ea1ee5458abc4def22","size":31459254,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3584,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"43b79ffff2d3e985569eb5cbde9d3c3c697c32c9e014e510d52ee4e9a10c3c85","size":980418,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f92b5019226d9bbeddc5395dea76685ef7d7c4a08e39f213d8c4aa67693bab7","size":36586,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.19-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.811-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.811","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"6b78f2524be868f547fce3d608d313c05b9afceedf22ad824561df267b0cc962","size":91745460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.811-x64.deb"},{"package":"mdatp","version":"101.75.43","architecture":"amd64","section":"devel","priority":"optional","installed_size":276698,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"4ae9bb8102a336f865aaf0ceab70b142622053192ef67c4d1bc4f5affd1c8669","size":111919766,"filename":"pool/main/m/mdatp/mdatp_101.75.43.amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8-2","architecture":"amd64","section":"java","priority":"optional","installed_size":324732,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"42cf4a8de93da7d44cbf043b207f077797c88b9c4f6fc3ec10612901aa61f0b2","size":165069322,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-2_amd64.deb"},{"package":"powershell","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a0d810fe381b77e4bfb99cc67f713f6d483545e94bdeb4150524c085cf20e2da","size":69463938,"filename":"pool/main/p/powershell/powershell_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.101","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.1)","dotnet-runtime-7.0 (>= 7.0.1)","dotnet-targeting-pack-7.0 (>= 7.0.1)","aspnetcore-runtime-7.0 (>= 7.0.1)"],"sha256":"eb3bf2a85ba09a791fc25a9dfe04d5131a24350f86af34cf15550defb7d26365","size":90604170,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.101-x64.deb"},{"package":"omi","source":"omi","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"348d6f0a0eb31522b476ed2127e4f86ee838c151d8ac832507f5d855f727ab60","size":1884682,"filename":"pool/main/o/omi/omi-1.6.11-0.ssl_110.ulinux.x64.deb"},{"package":"msopenjdk-21","version":"21.0.0-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352607,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6fd0f193b52b70d9585f9fc17a936f43ff9a079ed481670cd073976cd205dcc7","size":176295410,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.0-1_amd64.deb"},{"package":"moby-engine","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106344,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"02b7a3fe3c6792adf0f5d9c5c839f1f4f64f0c5e94e01093a6a6fe2fd32c2233","size":22701568,"filename":"pool/main/m/moby-engine/moby-engine_19.03.15+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.520-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228838,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.520","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"320d09a1c12ad84961cd151fdbf32e885f678eb42bc24e1f6cfa902025fd68b5","size":88849892,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.520-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.20 Microsoft.NETCore.App 3.1.20","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.20)","dotnet-runtime-deps-3.1 (>= 3.1.20)"],"sha256":"b73687da9c7bc457089d120c4f3cb687e4bbba06bc060ce8ff194bd3d3bfb545","size":21925522,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.20-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"24079bf09fc03151279b13f00ec7fd91cf7ec732d78727ae741cf0d708665c2c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.18-x64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":46220,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"012ae97f71917974a18379d04dd18150431f7cb9a5db5e04584e8ee4c4faf3ec","size":10169662,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.29 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.29)","libc6"],"sha256":"b9c9d07b5cf5d7783b387c67332fcb3356f445a2c21ca54bd15c0f598e5db436","size":120826,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.29-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68431,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.15","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.15)","dotnet-runtime-deps-6.0 (>= 6.0.15)"],"sha256":"06c1d3b8bd5657d0874fd729658659ad614176f7fa04e164f9dc785fcc9596e5","size":23080224,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.15-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"0.0.20211217~dev.1","architecture":"amd64","section":"java","priority":"optional","installed_size":83678,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"bab8e21f461a64ec24fffa77d1c174278b27d37c143f7b488d8bf25d4b9424cb","size":77279776,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_0.0.20211217~dev.1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.15-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"0ecba2f0103f3b53f639db55cb310b65667452b5d646926354d53bcf16b3ca4a","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.15-1_amd64.deb"},{"package":"azcmagent","version":"1.26.02210.615","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"c7ef2f69d6b0486a0088d524576f8ee91cbb90a54c4560cb49215fe0db19756d","size":53683134,"filename":"pool/main/a/azcmagent/azcmagent_1.26.02210.615_amd64.deb"},{"package":"moby-buildx","version":"0.8.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"9fd0481a56296898268892396ad63fd88cf6d0d9e650b05092a7ddc8500b61f0","size":23112352,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.0+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5845b74b3f0ac65102718e6a072cba6cd3eddbeb3ed3d6d0e0e4f6265287f1dd","size":167345404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3188-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27377,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"013256f409694381c6fb4dc00177e901e26078cd3ad0c478ccb681b4912f9817","size":2124346,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.9-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"9b6ab8b9c98bb3845819842de5158fd910b1d061b890749b49efe0d26cedb467","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020950001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18866,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"eb6a43a875b392d2a3013c9cafdb913aa7121322769233072aab0cf26371c438","size":4109284,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.5-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.8)"],"sha256":"c166ae2b979361d5bd6ae28735c19e071790fd14a88e2dc2ada370fbfceccc13","size":6085572,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.8-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.16 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.16)","libc6"],"sha256":"435049901ac1e2010f576db4b376f2f0b8541f34da202c2e2741e4a8f03a9617","size":140480,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.16-x64.deb"},{"package":"moby-engine","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86226,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"25ab605af59493188d1ec43afe3079dc1f00c80a086531a849d5e7cbfab2f3bb","size":20497760,"filename":"pool/main/m/moby-engine/moby-engine_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.31.02356.952","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"7c93aff6e5b62413727e391e666fd857be0d76b8e6b3119dd5e9c94329c5bd28","size":54290410,"filename":"pool/main/a/azcmagent/azcmagent_1.31.02356.952_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e6ca931e3c33ef55ada53058ec62416516965fcb3f0bfd8377303a8a97cfcbbc","size":156812136,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5312-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"8538163055e1112654548c1ffb2acf2bd54bf73ce25e5aa4594345ef306410c7","size":2117782,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"845a4dcdf7cfef468f114df064ddf0d91df3339e8fa81a4d642bdcb9b69918b0","size":3516354,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.21-1_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6517c2b485ebd5f9431a263692da4d415222a845d7553cf4645d475d953f2def","size":9652860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c6487b48e2118900cffeed91d67d9012f4e1e114c8c48fb2f01ad6526b6ebb01","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.8-x64.deb"},{"package":"azapi2azurerm","version":"1.3.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20744,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3be8889ef4a2bc388927a8179644551dd2ee00ef0c1c17975c839f6e1882118b","size":6716362,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.3.0-1-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27356,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"e6ee3b8d371697a07a3a88480ef620b173c61ef5e03c6fb159d91cd906e9cd86","size":2123508,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.0-x64.deb"},{"package":"mystikos","version":"0.9.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"c5bb8a03a650a3719fc19fa3d3a879fbbebe5ecfedef6db091215fd517244df1","size":4436802,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"148be51af16984cf17386ec477d9a3903670cca73a7f25443ec7b1d66ca22c36","size":1315226,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.98.89","architecture":"amd64","section":"devel","priority":"optional","installed_size":332405,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"582d1b94508d2d84432e1e4e049d6dbc712cca437ac82a2f25650703843a2f24","size":125131640,"filename":"pool/main/m/mdatp/mdatp_101.98.89.amd64.deb"},{"package":"moby-runc","version":"1.0.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20329,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ea515a80936dfec4ab07d9f37709d3074922feff5d10881f8dfecafc3e544ff2","size":6679756,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0+azure-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317734,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f5dd608c47a122ba604277b10d19d76dee2562d86b670402afe568f219d946a8","size":166768998,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-1_amd64.deb"},{"package":"mystikos","version":"0.8.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"637c845250a0a9c608a948672bfc60e1f810f36d0df33236fa711fcded549b9e","size":4373656,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.8.0-x86_64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d337b71bebb235a7e8a19cd961fdb2bd8c82d512755bb965dfb868880d5ff589","size":125664952,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4785-1.deb"},{"package":"moby-compose","version":"2.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6c802b98ea7ec047243ee7cfa1911ceb225c7aef8bdba133ee292d17724a2e41","size":9564136,"filename":"pool/main/m/moby-compose/moby-compose_2.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350083,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.109","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"bc23f4fa578ffe9206fc1cb4c299e04f890994ed3672571840e5e1d49abfcd57","size":90667862,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.109-x64.deb"},{"package":"msodbcsql18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"38bfecba0dfde7fd37c32e958bcf91321e5b7868ef0bd4d123b2f2e8c1252afc","size":752844,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6d9ef3a2caa939749d9fa94af1f515878843591103b9e1ffaac6b6392d70641f","size":155432416,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5198-1.deb"},{"package":"moby-engine","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97207,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3e79c2699a41d60544f79848fd8dcc97329f24114cff4619bcb646bb65f1925a","size":22804998,"filename":"pool/main/m/moby-engine/moby-engine_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"mdatp","version":"101.00.75","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"b07fecc2ba406124fb70454b202acda539971b81ed2f0bcb45360c8d743a951e","size":16305902,"filename":"pool/main/m/mdatp/mdatp_101.00.75.amd64.deb"},{"package":"moby-engine","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"07b58269da94bce5fbbc406a910f365292f2149ce48eda815aeb758f48609907","size":20926788,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"fb7dced8af436496de783c2194bfef410c56e156bdff60240203e9361c003a1f","size":5341004,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"641bed77ff67c69c7789b7502d5287ddf4d7ee9856f7f4bddf391a9c444d8d11","size":2656,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.14-x64.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76294,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"28b5bb9ce627cf98273b8dbfa8cb931d06a7b65a6eef7093400d301b4623b935","size":28218446,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.9","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"76cf3687d7402eef8425db6f75c13395664c418c3c8c0f66f32c9cce724edbaf","size":55690,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.9-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.7 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.7)","libc6"],"sha256":"ba43de611f4179cb3ccf68194890920aa2b97dcf4f24d4861f9500afc8d87aca","size":121042,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.7-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.2.0","architecture":"amd64","section":"java","priority":"optional","installed_size":83741,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2fc3bc221bb28c45ada5ac1d5ca3a24f002432860069bd0a79f1363dd5b3dddd","size":77328246,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.2.0_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.210-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222047,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.210","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"e9c3e1c1e73a19d0a792bbf7f76c5a161dd69c0912cfa587464a8c8f12f7c153","size":57223366,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.210-x64.deb"},{"package":"msopenjdk-11","version":"11.0.10+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316427,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"34a27d9fce24ecec7787b67d22bd8578a69bd6cca9585a70ba3372751a2af515","size":193172368,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.10+9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c970cf3cfc68b7394c889f0df1b3ac0ca8c88a9cccea1a425bba239a392058ae","size":68202122,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.12-1.deb_amd64.deb"},{"package":"moby-engine","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"87d71671681397891d19c022bf578f0696abb43005b7ba1cc9cbb8f102792aff","size":20903180,"filename":"pool/main/m/moby-engine/moby-engine_20.10.14+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b7bf28039571e04bf00ad0942ac4c1ecf509a196171a1a31687913674a033726","size":10605616,"filename":"pool/main/m/moby-cli/moby-cli_20.10.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336567,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.402","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"d054c29f0d6ac3eb208636db5b9c603ef7368c3bd74ab28f678d58017b0f7789","size":86580584,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.402-x64.deb"},{"package":"powershell-lts","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88a8e3fc3bf5899d180a3c6932fc1f16aec744d142e468cd9c503cb81981560e","size":70364236,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.10-1.deb_amd64.deb"},{"package":"dotnet-host","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.20","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a5dfd0e6fa48287c827a3370896c76afadf82a75696447809ee2456d71e30890","size":55820,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6a2903ed2616c7e00935c25376801244c01e1a4b41f369945f13a73196871385","size":228283580,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4899-1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336560,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.403","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"e2e423e97d6571023053e0ced24a122b1ee09c82ecfe2b093204f1f0a090e6fb","size":86614876,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.403-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"9c5c3a3816280a63c5635c447b71b110af8ed95834befee9205e72ad84e37b3b","size":3524114,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.11-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2996-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"287e138165c35688a148097cb70abb64ffc82045f61e10d250b22c95b734ed43","size":204035284,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2996-1.deb"},{"package":"virtualclient","version":"1.11.0","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"11eec246fca29d7666d13cd6bfa1c629536685570a1b60b0bdeec635341cc5d1","size":44771040,"filename":"pool/main/v/virtualclient/virtualclient_1.11.0_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.306","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"41eec4c727cb18b1f14cf442927e66009b8ac56c4c2d003bcff8ff5871845862","size":85091884,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.306-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"6496680a7582d60e63818967f2cd98aee775ba721ae728343362dd4268960e2f","size":499286,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.7.deb"},{"package":"powershell","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"fa7a2b2063063103682abec757552e79ec8fdb820fcfd10ffde66bdeeabe7488","size":70363920,"filename":"pool/main/p/powershell/powershell_7.2.10-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.30 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.30)"],"sha256":"febbc996b9bb461a2ea46eea74e4a5e64cb58240e1d200277c22d7da41b96052","size":21906200,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.15 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.15)","libc6"],"sha256":"fc4667c3d1a25fd4ce10c08af3570f5d1dcf7821687755e7e7823d151955abd4","size":120738,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.15-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"a8cd4903a9dc32de6309cbda75e3f447c5eae436b6f03d9e1aa31706436202d7","size":274156,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.12.2.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.411","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"16425094e8185a26d5d517f8fad2ceeff091e75d9352d1ba5e4b6e5f2bcba020","size":48228346,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.411-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"794cbab5578ede2af54c14bef3691bd475f890e034e98465f85c8c93acc2157e","size":2812,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.10-x64.deb"},{"package":"moby-engine","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0911fe2a2ed038205282623bc7e3897ba7d93126aec7edca4464fd6c134a2aea","size":20916908,"filename":"pool/main/m/moby-engine/moby-engine_20.10.13+azure-1_amd64.deb"},{"package":"mdatp","version":"101.98.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":305796,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7e1ba007e40c4653ca8b8bdf55e29600a08ac87217267e3b78417dd8a0be1cf3","size":119520316,"filename":"pool/main/m/mdatp/mdatp_101.98.05.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.121-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314335,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.121","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"ea0ec0cc9ae4f25bb30f5f4c7704875a62d54656ee3cb1e22a3c8a4d97f24489","size":78873546,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.121-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3388-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"df05e878a11e12d9538c5c1f3f9f05b639c5340770453affbf5a41cea830a486","size":208741020,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3388-1.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13094,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.9)"],"sha256":"5f6bc5506a83dd7f0835bc4f9e1213094981f3fb60e639e321c78a73e25a1ef9","size":1499018,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.9-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.21","homepage":"https://github.com/dotnet/core","sha256":"6fbb4309a0fff8a7d33f8641fb544c310bb1d68d1de88a6d9e4aa93c151a819f","size":42368,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.21-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.19","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.19)","dotnet-runtime-deps-6.0 (>= 6.0.19)"],"sha256":"2e635f77893cd7a802297f3fe00257d3792befd579820ce1132923fd27dfee95","size":22887618,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.19-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4915-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c081e147deead98682d2ac4c05010813b67dd4f1b82fa4e66b22c159854c9ae2","size":158709156,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4915-1.deb"},{"package":"moby-buildx","version":"0.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76246,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"444825d0cb85439fb016f13acf26033d270c34ee7160d9a99fa17d748d8603e9","size":28216826,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10786,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"1f20833937b8ed1b43a292fdb0cce8bceb315fcd572768e4cfc1f97d4486d2bb","size":3414476,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.0-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70801,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.1)","dotnet-hostfxr-7.0 (>= 7.0.1)"],"sha256":"c26e9d6bfb512806e89b4f2094964915c206b62be1bae7bf5efb69c6f090a305","size":23188750,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.1-x64.deb"},{"package":"azcmagent","version":"1.23.02105.466","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"17f9602fa7199ca006776c2c0688bfba291242292db0b0528f249af5933b647a","size":53831532,"filename":"pool/main/a/azcmagent/azcmagent_1.23.02105.466_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227352,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.303","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"7a7ca82a5c100d35d52cad7b4525efb95e08039d19a99dd36efaf2ec15805f15","size":58878538,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.303-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"dab9c7f9d0e4a250212c5bb52fda8dd85f965a0e81246e6b41c3a8be54195e0b","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.16-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.13.0~beta.1)"],"sha256":"65e0a235170d0e504a0a4b15511b9e46327edd85edb997b5c484bf54ba114e75","size":80078,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.13)"],"sha256":"bbf1f452f980f7807b093746972e745a9c804da606e42e9250b1515a2179b5d7","size":6612406,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.13-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2eeaa3c725e80f22d6aa6147c4d0721be2ed17340fcb706fea47ebe9f0033c33","size":70611474,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"86602d9ba581ce2deea151abb28e56048cea0cce4aa332f28fcfc82164b77a93","size":3517456,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.0-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"b7cbcd00def1bbab3cb16f172721a42ab97ce9ef97284d92185197ae77760a3e","size":3521274,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":676,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"4b4190c608f71b68ccd64c462a67d7f1d451e2c0a4bd2a6d79d1b58ef9774856","size":147266,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"aziot-edge","version":"1.2.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"421ed2073ed78c2aff4b798fa6671c2c222ad69dd945b3150536ddddac07adef","size":5770364,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ff202d7a1773806df4d150f860f91028cd318ff5557b99ef43e7b07002d784df","size":69468394,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227600,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.400","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"e775a3dc67bd1a8a561aba1e5db71709fefc0a0f87f4b1ed17542388af03d9ab","size":59143318,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.400-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"6724a88dbbc4a9468491cb3b6c56f805a1664f17cfc141adba33b0f72fed8238","size":2126034,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.3-x64.deb"},{"package":"mssql-zulu-jre-11","version":"11.40.16-1","architecture":"amd64","section":"java","priority":"optional","installed_size":114997,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"151178cffd4aec996d1fd6e2464e0e3a03d60bccb1b23b397454b3ab5a7d1a0e","size":39715442,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre_11.40.16-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.11 Microsoft.NETCore.App 3.1.11","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.11)","dotnet-runtime-deps-3.1 (>= 3.1.11)"],"sha256":"4574cb0172cb8ce0bc5f99004f983a833086d44debfc579dba2f55a094c57c2d","size":21399282,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.11-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":162968,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"28434376d4a14f42805578d49c08d85611de8d2984b868c8317bca2e68d33434","size":65979312,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.10-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.23 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.23)","libc6"],"sha256":"cdaaa6c1cc638e1bf330d0c7e9446f5910fbc5dde5ed7b6ad5b68e2d3f9c2203","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.23-x64.deb"},{"package":"osconfig","version":"1.0.2.20220404","architecture":"amd64","section":"devel","priority":"optional","installed_size":4317,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"9330d1120c44e00a91ebc75274b4e10a7f305adfec7fcaf21165fd79cf38408d","size":1512876,"filename":"pool/main/o/osconfig/osconfig_1.0.2.20220404_focal_x86_64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68331,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.7 Microsoft.NETCore.App 5.0.7","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.7)","dotnet-hostfxr-5.0 (>= 5.0.7)"],"sha256":"767af7166d335de75bc1ea12f4b12c3eafe1cdae1977e5d9626fb7a1298fd07d","size":21787726,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.7-x64.deb"},{"package":"powershell","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"89c217d853228a7a2d60620da25b9dda36e8aa87a2714b9082b84359bb30da99","size":68347216,"filename":"pool/main/p/powershell/powershell_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312305,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.100","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.0)","dotnet-apphost-pack-6.0 (>= 6.0.0)","dotnet-runtime-6.0 (>= 6.0.0)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f792e43cf164d2d26732ca187969ba60d1b5f8f3ef820a587af023c6f45615c9","size":77916560,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.100-x64.deb"},{"package":"powershell","version":"7.3.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196786,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c23b461a443ab87f9c11ce69fb625a01d7fd141f30ca42bec7a86cefed79ebac","size":71719252,"filename":"pool/main/p/powershell/powershell_7.3.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366974,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.306","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"054944c3f1c729ebd4fc08bd58a68bf759e6878d8729815ee59145e945e59857","size":96543430,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.306-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"a7fe468a27a9efb9f56f65ce563eb582f064e486f566710c3ebb680ce3a2386d","size":1315118,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.14-x64.deb"},{"package":"powershell","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5bb0f368f4a177f2790789a57102b3d22288a3fa98e86e8f48b43b8c9705497b","size":70502394,"filename":"pool/main/p/powershell/powershell_7.2.11-1.deb_amd64.deb"},{"package":"mystikos","version":"0.11.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"e4ddec438e39a6eccb041704d3d7881cb5de62ca4be860d2182bda98c9404222","size":5664532,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.11.0-x86_64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.807-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241157,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.807","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"394c0f1ae41df719835e1b9f43ff95750b2b536febb327b51adce9d8fee15f62","size":92101918,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.807-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313399,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.113","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"829fa22bb13f41075e7a253b2588d9848c512fa59c9594fd367561180b9e0ea1","size":78501022,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.113-x64.deb"},{"package":"powershell-lts","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"dc85567c9a52e16ebed727f41389de0b8e3275437e4b7a3905bc894f359a24f9","size":69460950,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357031,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.203","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"2e1000a54d809da2b49d0fbfacb4c9eca33805e0334be8fa34815ab17814fead","size":91833094,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.203-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.812-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241219,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.812","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"24b7b07cf5de2bbf1e8fd020dcda3426589c05e4eb92c5d572c3ce9846beeddd","size":91609078,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.812-x64.deb"},{"package":"mdatp","version":"100.90.70","architecture":"amd64","section":"devel","priority":"optional","installed_size":49431,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libproxy1v5","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"9ae09e3dca009b6975321bc7d57c8b1a1586626f91dd9fedf6faeb6532d72c50","size":15945054,"filename":"pool/main/m/mdatp/mdatp_100.90.70.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"171aeb6bc5d33779abe3e2eddc99474eef8e3ae8151cd3a9115cb34d8b4d3338","size":124365596,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4653-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68316,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.1 Microsoft.NETCore.App 5.0.1","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.1)","dotnet-hostfxr-5.0 (>= 5.0.1)"],"sha256":"eb4ddf15455e10ef799558292c732e20ccc6cc00b43a1e0b8175c5f4f0dbbe90","size":21672428,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.1-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337370,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.410","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"d714b88755d977894f1485c36b44a1c5f044ecfb329e6c04da9435faea474465","size":86806086,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.410-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bb40f43fe2210a8c8c00c295c85501ac849538750306645639e4eb164882f993","size":165947920,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2883-1.deb"},{"package":"azcmagent","version":"1.17.01931.118","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"6325d3110429e507691a25971a05b8c4a3110dde345fb24f355cd8765945d550","size":52441268,"filename":"pool/main/a/azcmagent/azcmagent_1.17.01931.118_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.11)","dotnet-runtime-deps-6.0 (>= 6.0.11)"],"sha256":"e745e27dd7fbc813dcdffb896469807ed1a1a9323fbd81dd5c3af95a593e171c","size":22847074,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.11-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.526-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228629,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.526","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"5acb3f643aace977e0b8e6f1d5414b16f3ec72caa8a5c3f8597bb34467152173","size":89325496,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.526-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.22 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.22)","libc6"],"sha256":"38ee581ebe6732de3b4a09b351ad6680bfb30a62aedd0d8cc9a100b81b413051","size":143754,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.22-x64.deb"},{"package":"azapi2azurerm","version":"0.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20240,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3294cb23f7013f939e6246eded6b3e85be150991aa85bc5d050d95d5be7a8cbf","size":6674858,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.0.0-1-amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68402,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.7)","dotnet-runtime-deps-6.0 (>= 6.0.7)"],"sha256":"6099c737128e6076793bd9e7d7076a1189fbcd79e99ece43b3a283b71072d387","size":23053200,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.7-x64.deb"},{"package":"sysmonforlinux","version":"1.3.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"f79ea8c2165edf2d067e46b61a804eaa87711071d3f307f62024a4cbdc8065ac","size":1772790,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.0_amd64.deb"},{"package":"dotnet-host","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3e9f0cc103795cf8aaafdb0168ba7ec1f0763189642438455faa4b727e64e09c","size":52600,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227503,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"eb71fc6cd5b1137f9a7d3b8bb3f38773a927a7e1438b990cdf72ae3049f97b29","size":58892974,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.403-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.2)"],"sha256":"62d5edb2667273c90fca39f2bed842e0dd6aad2a66b848a53fa57852b041c173","size":6597956,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.2-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.29)"],"sha256":"fd481d70bab41f4400425f4e3d8ec6c1079a6e45e865c83c3fb2d5b522fba29c","size":5771912,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.29-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.22 Microsoft.NETCore.App 3.1.22","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.22)","dotnet-runtime-deps-3.1 (>= 3.1.22)"],"sha256":"240796de8929b597d89f200a4616568eb27171185205ccef480c2fbb1f77e5fb","size":21834512,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.22-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.1 5.0.1","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.1)","libc6"],"sha256":"6dbd073a452657fadb74e92ec5853eed163ab480f5b795d36b7413a3aaaa27d3","size":140822,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.1-x64.deb"},{"package":"powershell","version":"7.3.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172207,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9219bc276da261d6fd1bce5dcbf898466e70682ea2f17eabff85841fbe6c9e57","size":69106406,"filename":"pool/main/p/powershell/powershell_7.3.6-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176791,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"940ab39342e7222ab0b09aee1182bdc8909db10a57908f8b25f1a1b9817dc60a","size":70833626,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70798,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.0)","dotnet-hostfxr-7.0 (>= 7.0.0)"],"sha256":"e80ddae4ea254b74b1f0bc91a6ebdef405e57ec4bbee4dca96e7e0cad3510a34","size":23190380,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.0-x64.deb"},{"package":"dotnet-host","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3086468765ad4e9f4298a8494f0105e7de05df8f32629168ecd3c86f7ebe4945","size":32460,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.26-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.25","homepage":"https://github.com/dotnet/core","sha256":"89859d59a821026b2e4d4237e799da2d4ff8d8f2679d27bbbbbf3cf73424e4d6","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.25-x64.deb"},{"package":"dotnet-host","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c77426b730cdf18db5d69641478667b838c98bbeef0fca45b58a85905d69a01b","size":36562,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.24-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.209-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222002,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.209","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"6d925dbfa3976f255dcf4db5b504f91a1465f1586b73d926a654fdb99e7e95b6","size":57063358,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.209-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b959b066afa9018179da74fe45e2561a459c4b0ef359e63dba3bf2c9ccca100d","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.4-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc92+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":18424,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"90adcb51c1ec71706a363f3dc18667dc56801beed2c51f44d105e30487e16644","size":6150968,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc92+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"50f58decb20077f0570e2720ff98689e0b8771b490c81275736b857bc248ecb4","size":70342536,"filename":"pool/main/p/powershell/powershell_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"0.9.20164.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"fb1cf14f7833e1ad3b2a68ce54de79262d66606a2205afb9249c4c3f7dfc201f","size":34134372,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20164.002_amd64.deb"},{"package":"moby-compose","version":"2.20.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59115,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"acbf7cecdc9df187cc1651c91daf7d43a20e94618d0c426c1102028746bf45e6","size":11886270,"filename":"pool/main/m/moby-compose/moby-compose_2.20.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.10 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.10)","libc6"],"sha256":"f5682ca5b104f37b4b77fbbcf0662e7fead74014003d9aa40f4edf216e3f0d0f","size":121008,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.10-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.7)","libc6"],"sha256":"17fc7a07ed846e5f8e6060fbf3bb21686fff1d735915fbc44e6aa16e6b8d526a","size":142192,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.31","homepage":"https://github.com/dotnet/core","sha256":"760bf1bd6cca99b32db239b0bfd2260f7f24179135c7f69107a29dea06c17d64","size":41936,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.31-x64.deb"},{"package":"dotnet-host","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"44e5c71e484c1b4627a85f29561d4bcf886dd3e1c0e2a9cdfd8f8740613debcd","size":32782,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.13-x64.deb"},{"package":"aadlogin-selinux","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"0a305bb2f22e6cd270c46ad0fb9aa9ddfbf831e369e543c3774f278cde7f0a83","size":10148,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.016050002_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71045,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.18 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.18)"],"sha256":"50f5968c112685726d23c0c483f3875a5ed3d6fb9062b96e34045aef5050a9ce","size":21924114,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.18-x64.deb"},{"package":"kevlar-repokey-prod","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-test"],"sha256":"dee391c861313a0dae25cccd08af13e5ab7a60bdad4c00934ef5a60581219502","size":2498,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-prod_1.1-1_amd64.deb"},{"package":"azureauth","version":"0.8.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74210,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"0548d922295c5abf08bf13101afd2cd095d8ad153feac54299942b5462301d8a","size":24107162,"filename":"pool/main/a/azureauth/azureauth_0.8.3-1_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.0","architecture":"amd64","section":"java","priority":"optional","installed_size":89388,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"9dbd9bf6019ab06c39837b5e7ff3bf0979f28a6cb8882ad6e85ff6c3c0d04077","size":82460816,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.0_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.7)"],"sha256":"fa1bf3eb1f17d370c50d31d0af0cb4a7348ac591735f77edc00f160a2a05b916","size":7057462,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.7-x64.deb"},{"package":"intune-portal","version":"1.2303.10","architecture":"amd64","section":"utils","priority":"optional","installed_size":22500,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpango-1.0-0 (>= 1.14.0)","libpam-pwquality (>= 1.4.0-2)","libsecret-1-0 (>= 0.19.1)","libgtk-3-0 (>= 3.9.10)","libsystemd0","libc6 (>= 2.28)","libuuid1 (>= 2.16)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","libatk1.0-0 (>= 1.12.4)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.21.4)","libsqlite3-0 (>= 3.7.14)","libglib2.0-0 (>= 2.12.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","msalsdk-dbusclient (>= 1.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libssl1.1 (>= 1.1.0)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libsoup2.4-1 (>= 2.4.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"5c353bba27e2ce61b0f71e5fd38553b0b35740246b29224c59c63b46fb9b66db","size":5359808,"filename":"pool/main/i/intune-portal/intune-portal_1.2303.10_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68326,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.3 Microsoft.NETCore.App 5.0.3","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.3)","dotnet-hostfxr-5.0 (>= 5.0.3)"],"sha256":"7bc20a222deaa183550751261290146c3a20251c913c8f31f4fd4489333fcdb2","size":21819124,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.423-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193113,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.423","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.29)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.29)","aspnetcore-runtime-3.1 (>= 3.1.29)"],"sha256":"d50b5e9b7e40adca7013a516a70905f60a8f4482730d0bb17f5d76e6041d6e2e","size":49818980,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.423-x64.deb"},{"package":"mdatp","version":"101.02.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"82cea8404dbc3d29a69e3d5d0cdcd829fcdeebed9b0258f7e430783e3a89aad2","size":16305972,"filename":"pool/main/m/mdatp/mdatp_101.02.55.amd64.deb"},{"package":"aspnetcore-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":12348,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-5.0 (>= 5.0.0)"],"sha256":"c3837d2af9073a6551a81cc25ca60e84a8ac721002f1ccad75a5d376af8e2cc7","size":1316456,"filename":"pool/main/a/aspnetcore-targeting-pack-5.0/aspnetcore-targeting-pack-5.0.0.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.3.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86451,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0e73f0fb4860902c6a1ce2a26b986d43aaaac26479b3347c4ed2815ef249a4ad","size":79708440,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.3.0_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71081,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.22 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.22)"],"sha256":"48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493d84c939b7c608","size":21937036,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.22-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7257904fa3441e","size":124417844,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4590-1.deb"}] +[{"package":"dotnet-host","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2557da13447d61382f255eb751ba29cc1a8220899c1e3e640a7bb3d2a0c1d297","size":32594,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.16-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.10)"],"sha256":"1d9869f862cb4e9c46b245a343d8e39fbbc84d9f8ab9ef357c4643da20805ad3","size":6084188,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.10-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5fcdc041e503ffcd726bf6455f339b5438d3fac3689a5f5313e1eba67e606f88","size":165966956,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2883-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68167,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.25 Microsoft.NETCore.App 2.1.25","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.25)","dotnet-hostfxr-2.1 (>= 2.1.25)"],"sha256":"935826f9edac6762c4f65ec5a9199110229470b6e72274a5efe0e6d9104d3c02","size":20321788,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.25-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.25 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.25)","libc6"],"sha256":"f1b30770705e2b8b2ab722ba42623ad15d27a43c0f29c621aeab112e948260f8","size":143780,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.25-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.7)"],"sha256":"386f3e029fb52b33fcc5b98cbc481c17f0d496a609523b1878cfa16173bb61bc","size":6087024,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.7-x64.deb"},{"package":"aadsshlogin","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"68466418441afe8eb6b557d81065eb47d43646b9538c0c996ecbe8c58dbe6e75","size":418558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016820001_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d50a5c1bd8242f0320d52774d5266d94fae98779f49d9a8a096855d56177c571","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.1-x64.deb"},{"package":"dotnet-host","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.31","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"50e08c977e2cb6c3353a59c323bf52d57b78ca74c061b3ee659132103b2eca33","size":32458,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.31-x64.deb"},{"package":"sysmonforlinux","version":"1.1.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"b1f813bc8e0359f218dfb182bb64f8b5c0f6fc352e72e615758826841739e58e","size":1515746,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.0-0_amd64.deb"},{"package":"moby-containerd","version":"1.3.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.10)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"62378c56cd108ebaad70d9e0bfe8c30f715c2ae86df2393435303ceb1ed2aded","size":27668988,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.5+azure-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"d4725a8504b3a6d73f7cb82907d02e9c2176424432ad35e7fcb2d468841bf528","size":3863540,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.1-1_amd64.deb"},{"package":"azapi2azurerm","version":"1.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20596,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3d76c30d08189db164b13f34a39bfb57e8a79700effa18024b9d1fcd2aa66673","size":6702890,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.1.0-1-amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.13)","libc6"],"sha256":"93ef511b5897aead2d0d9452c19aa0d9b938e6e7986edd76fb781fb6b770f4f6","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.13-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.5 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.5)","libc6"],"sha256":"9125c2843951d5149930d1260854223ce4050eb86a9b9bbe6a5056c4b64c274d","size":140778,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.5-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2492,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"7505fd24b596049d1b573bcda9df3f1b3bb7be7611734a91825f1442d2587c4e","size":602668,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71088,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.6 Microsoft.NETCore.App 3.1.6","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.6)","dotnet-runtime-deps-3.1 (>= 3.1.6)"],"sha256":"b2b20959dcca02ffdabe5a7b212ed63d1d3a454603ab34c2c7df5f9f52671a21","size":21776838,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.6-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.0)","libc6"],"sha256":"4e10a768c6e9bee484c47e4d4e4d321556c9c5cb283d06a2655cd678497f881f","size":142176,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.0-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228009,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"361a22a6e60ec80a40351b2e1453a389e1702b31bec93ed5ceacd4fe17527874","size":58788182,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.406-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.15 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.15)","libc6"],"sha256":"d9683a54735da8114110ba75f1da9f15e1f2692b2ad33df3a6d8f95477fa35a4","size":140318,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.15-x64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":52732,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5636c437bdf857d8835c7c1ab26c6beada631fe4989efd3cd2d01140120a860b","size":10877354,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11746,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"3f8aeb1f6a3d17bf42d286c5083d43f65f07d08ba0195a88992a02b023320210","size":1314262,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"3da92fd67c733645ccdba3b0608bb1382a4e949193d5cd2eec0e1ff37e61cbb0","size":2654,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.13-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.519-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228812,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.519","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"a59888761f41fb6d1953ea2e30d4e6194bc1a610f2a93046655d290e361c982e","size":88705220,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.519-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.316-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.316","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"47cfedb8743e3dbea1e1e600cd95706dfa2f6efe425cf4662693d8734405ee8f","size":85176670,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.316-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"96ae0131a8f65e2f5deddce96f8cd00b750a8fd86379ca63ae7851f77e063700","size":419334,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.016890001_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"0edf4c43e4be13a8390269ffea663cfc7a6a25a5faac9afcf4b8189abef8de10","size":2124278,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.7-x64.deb"},{"package":"mystikos","version":"0.12.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"770c905b3d7e55cd373b5459fddb2c2e14163d31218f424bdc850a4764ece70d","size":6579698,"filename":"pool/main/m/mystikos/mystikos_0.12.0_amd64.deb"},{"package":"open-enclave","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":124310,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"db486581c4046e9c983e71df1556a3568dd9ed6aed55e278fce721c827bddbcf","size":34456690,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.0_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8ab1b6ef86eac3f6043c56bc6d4c2906e547474885a27b9fca89a45e717bcd04","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.23-ubuntu.14.04-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"022b3e1cf0a2b0c3c140aa89d992dbf8b428378610056b888ea890ec95ceaced","size":227619356,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4626-1.deb"},{"package":"powershell","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0af024461c5184a387fb346ee00b3da3da5fa734ce7bdeec65b085870ca4ea7e","size":68393634,"filename":"pool/main/p/powershell/powershell_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b7518a808d2ba0cf80647bc5b0f7cfca6f8bae47d743961e5da83352c31ea64a","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.24-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ce2c901402023712f4554503d55066540b03d87efdce76db242e1db2b441390d","size":209992028,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3785-1.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.17","homepage":"https://github.com/dotnet/core","sha256":"1ea44b76143ccedabec500b42707d06edc50041d0d26b7d0689cd2a7f8e364d3","size":42336,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.17-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.27 Microsoft.NETCore.App 2.1.27","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.27)","dotnet-hostfxr-2.1 (>= 2.1.27)"],"sha256":"a3f9825b3ffe3087d7c5ebea0ee16cab29759fbdc4ab633455c7a9ed5c6f6d2a","size":20332510,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.27-x64.deb"},{"package":"azcmagent","version":"1.15.01874.34","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e30e3813d8803cc7e69e61f3d6440fcd1224451b446a596241bf913ebf840ef4","size":51722932,"filename":"pool/main/a/azcmagent/azcmagent_1.15.01874.34_amd64.deb"},{"package":"moby-containerd","version":"1.6.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":123878,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a08844feebd523f95dc261969c609f253d7bdafa34d02fa9887759c15164e31c","size":30980814,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"29b8a014222d013e3cd033f89d51bd7b1fdf5253e1be0dd94e22f219d779417b","size":1307204,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.5-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.17 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.17)","libc6"],"sha256":"675177925887deef31b6b82e5226234ce7a2a20ccd152255e0e1eff469869675","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.17-x64.deb"},{"package":"intune-portal","version":"1.2210.50","architecture":"amd64","section":"utils","priority":"optional","installed_size":26727,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["gnome-keyring (>= 3.36)","libsoup2.4-1 (>= 2.4.0)","libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libsqlite3-0 (>= 3.7.14)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libcurl4 (>= 7.16.2)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libpango-1.0-0 (>= 1.14.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.16.2)","libx11-6","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.9.10)","libglib2.0-0 (>= 2.35.8)","libssl1.1 (>= 1.1.0)","msalsdk-dbusclient (>= 1.0)","libsecret-1-0 (>= 0.19.1)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a25651c703a76d9a6c8c7b3753fc4e269cc8dcda7f3618db609da97a9df92941","size":6756548,"filename":"pool/main/i/intune-portal/intune-portal_1.2210.50_amd64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2729,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"3bfe8ee9b4483f22e063417f8441365e412007ce4242107e6857b6c89a25fe67","size":684054,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.24)","libc6"],"sha256":"78a20e961d0562c05c79ed809636535c594f3cfeb18b9b662d7768757bd7c8b9","size":142386,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.24-1_amd64.deb"},{"package":"moby-tini","version":"0.19.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":823,"maintainer":"Microsoft ","description":"tiny but valid init for containers","homepage":"https://github.com/krallin/tini","sha256":"f9e1777db87f1d10edf19f35b62bf9288ff47f1ebbb219edcaa3cd1db4539430","size":349856,"filename":"pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70843,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.10)","dotnet-hostfxr-7.0 (>= 7.0.10)"],"sha256":"61ff73e62903f96a7f4e85005bbae9c324958747a1369684754b9da69dfce308","size":23207202,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"intune-portal","version":"1.2302.11","architecture":"amd64","section":"utils","priority":"optional","installed_size":18603,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["msalsdk-dbusclient (>= 1.0)","libc6 (>= 2.29)","libsqlite3-0 (>= 3.7.14)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","libatk1.0-0 (>= 1.12.4)","gnome-keyring (>= 3.36)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libstdc++6 (>= 9)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libpam0g (>= 0.99.7.1)","libsecret-1-0 (>= 0.19.1)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)","libx11-6","libglib2.0-0 (>= 2.35.8)","libpango-1.0-0 (>= 1.14.0)","libgtk-3-0 (>= 3.9.10)","libc6 (>= 2.28)","libsystemd0"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"685c7f694bf7a1e3e8cf1cbed3198a218283c37c0b23eebdf543eec400f10374","size":3344596,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.11_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.2+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348986,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5a711a4e64db7b4b7b0b0e79be0fd182722b16e83bac584d2edfa92c309fc433","size":205342114,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.2+7-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13097,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.11)"],"sha256":"f978b549faf888d3b27caecc94ed4afe26b9bd7be908e44349e7fc7b749747fc","size":1526066,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.19 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.19)"],"sha256":"be05d2befe19c95107b1cde4fc0abe6fa6b0e4cca03f1be32408505851f2e5ce","size":21928174,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"5f5903bfd7dfc455dd48530121cd67250de834a5667fc1a022e976238ee6e5f5","size":1307476,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11285,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"4eebb74f244a7909a4b8a72ca1ffd3a75fa75a192917285f513986393c504645","size":3523918,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227516,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"d84b52c828206632fee8f7f830ccf87847b8a66d65f8d91a66f98f08f200e4a5","size":59002212,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10784,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.6","homepage":"https://github.com/dotnet/core","sha256":"8d0f284061b82e7ba4089363a14630bc7e0d5ecf89e2a14a2130b8660e34ed01","size":3411678,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.6-x64.deb"},{"package":"open-enclave","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":113802,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"1b4d1a00cf3e49a79f8b4c7bc7738a815cbb68c29ea3a896225664e1a8cc02f8","size":31111910,"filename":"pool/main/o/open-enclave/open-enclave_0.17.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.30 3.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.30)","libc6"],"sha256":"be3ff69b76c9ceca3c2e664ae2829cedeeebe40a6a8113c65cb3d39c3c15b006","size":120710,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.30-x64.deb"},{"package":"azcmagent","version":"1.10.21228.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"279296ab5dc1f4455a8ba0d2c50247c5c0db6028c648e32ed9e33c201be46009","size":49565968,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21228.010_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"b1e6af88a0ee657e0147ba620ffb0797e88185e9c81e8d39fcb4eb21cd1721ee","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022090001_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"bee6959620c1cf6a6018d530e34b328c8ae3ef6ef5ac9ed725177cc45c3bb158","size":10124,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015280001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.5)"],"sha256":"13624f3fb400d4daba08db8c7b81a08fbe0e76d012741092e1bec6630217ed74","size":6086620,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.5-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"7286ff6948a8668ec80770b44d4f665ba87c8ce39ea00b5d52fa6ed3dff0e0a0","size":26989344,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-1_amd64.deb"},{"package":"blobfuse","version":"1.4.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":34258,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.2 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"03c3eb0229ea30aa561b231555cc8971c071d424f535bb1b79dc79e0a922d4a8","size":9837918,"filename":"pool/main/b/blobfuse/blobfuse-1.4.2-ubuntu-20.04-x86_64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d0e717c4b68da8d23ca511e28c5816c1f97a9f28b39af6500cbce82d516ad4db","size":141849620,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4544-1.deb"},{"package":"defender-iot-micro-agent","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"89c53fc7ed37643ada062c31d3242b137867b0270077bbab5e8e44265f3cf0ac","size":276272,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.13.1.deb"},{"package":"scx","source":"scx","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"8efc366fcd0bea36aa4e7350f1fcefa009b8c3c5e2c08124882dc2ceadb526dc","size":2588282,"filename":"pool/main/s/scx/scx-1.6.11-0.universal.x64.deb"},{"package":"procdump","version":"1.1.1-220","architecture":"amd64","section":"devel","priority":"optional","installed_size":280,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"aa9b16f4940719db016ae7645c3deb3abefcda85ec37373be7239d0a36015901","size":91470,"filename":"pool/main/p/procdump/procdump_1.1.1-220_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3788fcba514cd7f6813cad1cc023a87a0c354b5e62fb0bba66f999622d6030fe","size":5341828,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68422,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.13)","dotnet-runtime-deps-6.0 (>= 6.0.13)"],"sha256":"0e1debddea9b7ff4939a88af07867fcefc87b2f468f98f71fadd4aa71b176a80","size":22613226,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.13-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11277,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"c6bbe37dd7bbeccff48a6b65ab692f6d778ae9dc5af29816541a54682df2f35e","size":3524590,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.3-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cae69c3c33de3da4bfcd4b7efa29c4023c518e4adba34056ebaa1b0f9f78ba22","size":2674,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.21.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59364,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"e9f35d0b7fd6e8032d7a1be840dd7546a17a76a78ce2dc244846e2e5c01309b1","size":17815234,"filename":"pool/main/m/moby-compose/moby-compose_2.21.0-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.3","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"468e51c36fa323f47ae5789cf8ae9d45475d3639062bae7e8db688d4fa85154d","size":4117940,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71082,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.23 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.23)"],"sha256":"d8a5eef5d923878c0a7533aed050532a30b0dba4ca34cce16997633eb6f13bc0","size":21927716,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.23-x64.deb"},{"package":"aziot-edge","version":"1.4.20-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18518,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.6-1)","sed"],"sha256":"201b83f04628b7b4ca023681fc1cfb79c31a58fad34bf5aa46fada8554f170ee","size":4431946,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.20-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.9 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.9)","libc6"],"sha256":"f8bf3566081aaf2d5d48876aa066a63f19112718076a64d72286492927b2848f","size":140282,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.9-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.5 Microsoft.NETCore.App 5.0.5","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.5)","dotnet-hostfxr-5.0 (>= 5.0.5)"],"sha256":"212e1082ed580e382c344308ceaa810c4c6b22369578fb02799fc7d765f3c51f","size":21795820,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.23","homepage":"https://github.com/dotnet/core","sha256":"6055ab67097c149fdbde1ce7da11181f5198f72eccbedf998cd1e5dcc38b788b","size":41920,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.23-x64.deb"},{"package":"moby-containerd","version":"1.4.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138428,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b73911216929949d23a8b4a664b75a0dd5c676488fb38ce74f5a2d25439300ef","size":30822564,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.4+azure-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"b96158bd7f48db6917e50449fcadb7e6d154735ec19973410c81da18b4585f4f","size":1315894,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313428,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.112","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"bbb517ce8930b6c25860a34f7d1858c67965ed9a4c445ab36f0482eecd123afd","size":78525266,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.112-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a8028acfa074da855eef31805a52ed341f95f33bf74319a083903b8fc17bca7c","size":157155760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5348-1.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189593,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.416","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.22)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.22)","aspnetcore-runtime-3.1 (>= 3.1.22)"],"sha256":"8b2cf4f47bff8d9768fb21626f6847e5223dc9ac12ee951718f9db41bf7c5985","size":48071620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.416-x64.deb"},{"package":"dotnet-host","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.24","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3e1b4542b0a826316d1fbbcd96f5c4672de7988939f11d478995ab0ee00fbf7","size":55918,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.24-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6670365be8316093097de476a0054d9989fc1f9116d3b558b0922e9c0190ab1f","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124223,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"bba9e4e3481c121b2cf4b208c2c2540486cd9ac5e1a6488c9a5902a15ffd5a7d","size":27583496,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.10+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.2.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23914,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"242c7beed66e90503bae72243abf10c08e68b087e601122ac18bc19c4f63aa95","size":5777600,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.8-1_amd64.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":85898,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8b0a0833dde01dd7dee5b94cd38a7379a2feba6183464f034e2c521f6eb90aa2","size":20426268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5f72d3dd601e5211aa00f26cc5ed578eca7762c0d34bea0e560e5147d1e0d8d7","size":69440998,"filename":"pool/main/p/powershell/powershell_7.2.8-1.deb_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8fa09b323ce9042ad1e8cda02546047bc6e2e9ba07afddd498ebe4a86b13df69","size":227702464,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4669-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.525-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228666,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.525","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7bf4042264f848adb36b1b8729e413ce86a772586076aa05a0f2937c403b0908","size":89342040,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.525-x64.deb"},{"package":"azcmagent","version":"1.10.21239.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"606ecba800eb9417ea5c4f2cef0c2b31e3b154e310aa95223d52c4d7cb8d684b","size":49538204,"filename":"pool/main/a/azcmagent/azcmagent_1.10.21239.003_amd64.deb"},{"package":"dotnet-host","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fcdf2ff915a09a0eadef97518df927e173fb16f3ace90f29ee509188d945dd12","size":32478,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"1c730d33b41d3cb90a4b4113c422c1be81b5fa8f739046643befb55903921675","size":3522798,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.10-1_amd64.deb"},{"package":"open-enclave","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":191735,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e20e03dab90cd3cf7b17d8672bfc6385bd27a7adb9db4ca13ce02a7c4ad26511","size":54537200,"filename":"pool/main/o/open-enclave/open-enclave_0.19.4_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"1ff382ea6af6364f8f35a5ccd64bae88c31d09652d5ad252fd55bb212e99673d","size":2567222,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"b777ed2b90ea97dda2a8654b23901d8a2c8366e5a8c2b2573e8aba042fd9e835","size":285622,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022300001_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"b22a9d3b4e9383be7d8f3c0c7922bd1552775b7abc446a46bedb6ccaef4211f2","size":264512,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.11.1.deb"},{"package":"msalsdk-dbusclient","version":"1.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["msft-identity-broker (>= 1.0)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"78588d17039d3bf3096f1a0476e70eece76d732fd938e447e37a3c3c33af0b36","size":9932,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.9 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.9)","libc6"],"sha256":"745a556521a404a87e636a6a051021d66b0708db00201b0a8127baedc4394ec9","size":121016,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.9-x64.deb"},{"package":"open-enclave","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e312248f847146ffc16a3a44dd3379d9bbc9bc623ba41c11bdfc8daa700cbf79","size":54508872,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.2_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"267046f6a5bdc652cdff399e69bb048a9fe31b9fffa5ecf59e5ffa8651fd105b","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.7-x64.deb"},{"package":"dotnet-host","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"59f7084cb3930657e8e08dfb41bb360553a7820fac22fe19217dfe678c367a30","size":55714,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.4.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":56247,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"f4ba4ef6fd9b049349ac21d6f3dac387da99fc573b6d2aa0e8c8e3c25ff87eac","size":19462424,"filename":"pool/main/m/moby-buildx/moby-buildx_0.4.2+azure-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.7-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324493,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"d85c672f28263e589bb24c644a0d514c022c54d9a82c932dd7e204913746b408","size":192238598,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.7-1_amd64.deb"},{"package":"azureauth","version":"0.8.2-7","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"88293e261db82ab4065f3121d5347305dafae0cc18976a9db7dc857b0c9a23c8","size":24108106,"filename":"pool/main/a/azureauth/azureauth_0.8.2-7_amd64.deb"},{"package":"mdatp","version":"101.03.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"1cdeb1f84286fcfc3634aa636184e69d8de4a256d7bc3395c3cd46299cbb311c","size":16306366,"filename":"pool/main/m/mdatp/mdatp_101.03.48.amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17467,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.8)"],"sha256":"1d7fdcf419bf3a78364d885517fbbe694b34fbb4259ba1184bc1b7f7f993c435","size":5769702,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.8-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c4b114bffd76a55588d9dad3bbea3d0edb2290fb212b89501fe1dee9d0fb8886","size":10570860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-2_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120070,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4b38f17f2fcfce60d3de5c5ca99dc6443e335f273210e68d9d1e83ae7f300335","size":26969412,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"86d1b67b0287593f023edc08217c3d7b4d9fe34db6bed602f089057c7135ddd4","size":172048900,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5148-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4425-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ebda02d39c2f184fe7798f607f9baf741a726166bdf620faf30df1e8cb78ef83","size":211264760,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4425-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"248211ce798f17bc101da096123ab085072f718891e812ab28d54b1ef2177267","size":124416520,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4629-1.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19877,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.18)"],"sha256":"fb2b920c58eafd21f1603fab79ad877e1a1d6b52f1b09bb3e574ba4c52e5790b","size":6614146,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.18-x64.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1cf0fe4a1864137275b9ae732c2955f6a38e652633ec31ed295f109da4b8b9c8","size":31535086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"d77d76800156fe2f8927c4058e9f38c5869792154381eaab1f21c390c1f2339f","size":1315890,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"48a86372085acf1ef0654ccca308a29db18d0cd892dfa37f707b0170ebdff1c9","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.22-x64.deb"},{"package":"azureauth","version":"0.8.2-5","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"16af522abeaf26d129c2fe85797a1545885a9ca971cffa1d139caae64f8a6bfc","size":24114326,"filename":"pool/main/a/azureauth/azureauth_0.8.2-5_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18557,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.6)"],"sha256":"04e742a057549d5c5e523ffcaa2b141e2c72746844a0129f7cebcc2c9f8707cf","size":6086044,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.6-x64.deb"},{"package":"moby-containerd","version":"1.5.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109077,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fb25060e68694a6ed58f6083001aa10e158831e537ccd8381a91683fc6dac4e0","size":26798086,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"blobfuse","version":"1.3.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":32372,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6caf1a6e677ad286dd707a2ab99c202357e9b523c06980ac62e83eac577814bc","size":9299024,"filename":"pool/main/b/blobfuse/blobfuse-1.3.5-Linux-Ubuntu2004.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-common-media (= 0.11.1~beta.1)"],"sha256":"dc35ab240cb86855ab55cd95f92f89fc3900c72c1ddc234e90ddbf87a6cf5b2a","size":149912,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fad642753e596b724728fdffda51446c1371892559c07e8155f819a93a20f2a5","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.17-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.806-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.806","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"dc70903977d4832aa821e17a3734942f806dab283332eed711ab45d5de531ec7","size":92091884,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.806-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3d49b06db4758632dcb37f6e77e67fd27c62b7ca92b88a4402534d12427acc5c","size":227694792,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4727-1.deb"},{"package":"apt-transport-https-sas","version":"0.9-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"847f65c962d5a64d5d9c84673ac1aefa9e93d6456f5da6bcf84728dcfba8d707","size":12426,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-3_amd64.deb"},{"package":"aadsshlogin","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"c29b7738d9aa27f63ddb3385a104bb770de79ba757bc79156a256830a84c4e8f","size":419498,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017540001_amd64.deb"},{"package":"aziot-identity-service","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17955,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"2393429995c94361cb1691e3be79b1a210bb4ced647905c8951bd196356a71fd","size":3756332,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.3.0-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195083,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2518230120bde23d124e8a8d30d560b14572a588af57e441c4c24ea52ca79e2f","size":70861036,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336633,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.404","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"b0db8754304b29c3a8a28820080713733b8cba9cc4549e6496bf7f4945685562","size":86631222,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.404-x64.deb"},{"package":"moby-engine","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98009,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"aa0eb3b0654816491b036a85d6b3df81b0e26c54fd0086c136d973bb49b2e25c","size":21182268,"filename":"pool/main/m/moby-engine/moby-engine_20.10.10+azure-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3069,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"87b13cedd03de43b952a2b0678191adadda03f8fcf9e584ad5d3a43b2b7c6450","size":838158,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.0_amd64.deb"},{"package":"dotnet-host","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10d190304d21b10b7f51a79d08bd5e867ef97b59cc866841d12f0970e91f62a9","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.2-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"75d79e64f4f3525555196c3de3b6a6d6c255a317a51538cfe30567f92caf51a9","size":2130996,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.13-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.16 Microsoft.NETCore.App 5.0.16","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.16)","dotnet-hostfxr-5.0 (>= 5.0.16)"],"sha256":"94c64f37c5366da138ba001c362d9f0fa75b8131817558b68e52b20bab538b56","size":21840928,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.16-x64.deb"},{"package":"powershell-preview","version":"7.2.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":164716,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f93016a0cfd85711d8eb274a123b353f463f3e589baa53c8af18c5c269126a12","size":66452168,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ce62dc4ac114de9cd82ad3db7eab8551addd5f329c55d9bc8f1a9c0ee7ea8119","size":32452,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.27-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.27)"],"sha256":"0bbe47ed2413a67ce2f84a38145cc4a3dbbefa668c8704e305818c7f4b0c7951","size":5771296,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.27-x64.deb"},{"package":"dotnet-host","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9aafd51da5c39d88c7190f208b874e8b159359b74481d46ea87159cf0fc9ffb1","size":32504,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.24-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4fab6a262de18f8b64e57dd27c5a6acd9bf769a233561ea50f9ecd5013581fc8","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.20-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3696,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"dfe9e0705a4186d418ea9a48e3c80c353e8fd943e3f566d829173d20aaaea537","size":1010380,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.19.4_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3477-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08cb107257aca65fa156ef7c7708d0620c703769cceb4aedff56f0eea688f6c6","size":209487336,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3477-1.deb"},{"package":"dotnet-host","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"168de157996cc20afcb22c99aa363447aa177347b7d053ee1e4c12e36e5adebc","size":57382,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.12-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.15+10-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316139,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"0a2a9f6be1fca5891486b90c4676b95c547e2df1a9750443ae2a8782234f3fa5","size":193176730,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.15+10-LTS-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"59a7d8c4a06591962abcea21dad220af537f300bac1f6cfc1be78cb898676457","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.1-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f7854d72dcce33b230cbcb69a9f7ddd7189d96b52edd5fda39f4cc8d24673ca8","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.11-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.2)","libc6"],"sha256":"8348f279c3614c93676cfefecf6f653135b910dd9ab0a702edc6d65f5f2bf36b","size":142108,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.2-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f6627857e9a11b74d9e676ab62b2a2a50a5f567a0c55e4bc006456159acbdfed","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.021030001_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.14 Microsoft.NETCore.App 3.1.14","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.14)","dotnet-runtime-deps-3.1 (>= 3.1.14)"],"sha256":"10563481588e18f8d8ed70d9b99a58c158b98b1ef8159c789ba55073bb240a67","size":21744410,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.14-x64.deb"},{"package":"dotnet-host","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.16","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f3beedd7786937c7fa0cf6fdc620a9b6e9a0630d49e36f868bd22526ad402bb","size":55864,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.16-x64.deb"},{"package":"moby-engine","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103382,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a5aba3a499328a654304da3ec4d5ca323c96c7849ff05f0f6f854bb980f1f435","size":22538834,"filename":"pool/main/m/moby-engine/moby-engine_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.3 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.3)","libc6"],"sha256":"d2d7de4f041b6168ae2a7be47ac3840fcb8da578f77ee0e52fda25ef5b9261c6","size":140808,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.3-x64.deb"},{"package":"dotnet-host","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d4b1ef40a32e948e99370003c3e89f4834d509b6707c5709d53b1ebf1bfe6c14","size":57278,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.8-x64.deb"},{"package":"moby-containerd","version":"1.3.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126915,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"b875b91d14263bfbf3eda9313a15375f74cfa22d94e6c0ab03d62fc32032a186","size":27677300,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.8+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"36ff1945d3e7a0c5cecd8f5618a4e2790faa7cd802bda9468e09bbad39e0c8d1","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.5-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.425-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.425","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.31)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.31)","aspnetcore-runtime-3.1 (>= 3.1.31)"],"sha256":"d5baa261325602144fe72944358d02371a8dbec5d2df322e7459a4dcde0dd60a","size":49834620,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.425-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71114,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.19 Microsoft.NETCore.App 3.1.19","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.19)","dotnet-runtime-deps-3.1 (>= 3.1.19)"],"sha256":"50b3441944ac5bd8b56cf77397327cb3974a7f645047ab67d6886e5ccc8def9f","size":21752250,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.19-x64.deb"},{"package":"mdatp","version":"101.24.45","architecture":"amd64","section":"devel","priority":"optional","installed_size":151288,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"862be7267065eb548f25fe8ec8654bb43d92d1b80188def5b8818e805787846e","size":44872594,"filename":"pool/main/m/mdatp/mdatp_101.24.45.amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.5)","libc6"],"sha256":"26ec1b1a281088177f66da1de36d31fd31a427f5a0e42b18538dabc503d52a1e","size":143998,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.5-x64.deb"},{"package":"dotnet-host","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"19d6e6d8937060556a8efc783fd27a32e7424da20c39ad933e27342c365f4d1b","size":52590,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19872,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.14)"],"sha256":"0734d77b6149db2d071b8b15f126cb9f7da613166cdd6bc835b791bad9f666fe","size":6612218,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.14-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4a991eb6e48937efcce608f70e0c2357df03d3d85bbe071071a0307b21dfbbc6","size":227788672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4837-1.deb"},{"package":"az-dcap-client","version":"1.8","architecture":"amd64","section":"unknown","priority":"optional","installed_size":306,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"96b4f5d6bc3d4ca79de4ea99b3cb3f1c7d518678397e8e24dada9034a53df036","size":63924,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.8_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.21 Microsoft.NETCore.App 3.1.21","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.21)","dotnet-runtime-deps-3.1 (>= 3.1.21)"],"sha256":"e2283c2375c028a33decced88a16a94d4e196b4decea7d3f61e2f7e9e0cec41d","size":21754372,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.114","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"5e73956aa56a60e1e89549e0d33fdfa6614b64234632baabb4a5c89076b61b70","size":78676286,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.114-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4544-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"80fe990383c5ed0f6cfa98079e98d93ad46324b84e254b8e8fee8150c813efb7","size":141836620,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4544-1.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.6 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.6)","libc6"],"sha256":"e3423518b16a0cbaaaddc030121ab010e47a5da00474be54cdf4260fbf31398f","size":121074,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.6-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68400,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.4)","dotnet-runtime-deps-6.0 (>= 6.0.4)"],"sha256":"01f8138ab2c5d9070f1890822f4c4dc24692b6a913b9787c9df6892aff11a234","size":23011424,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.4-x64.deb"},{"package":"dotnet-host","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"380fdc61ed10647dde7e1cf2580428c1e5ed7c492c58636e7e57087ffa30852c","size":32416,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.25-x64.deb"},{"package":"moby-compose","version":"2.1.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"73bab455d7ea48f0d15b363a15237dc7299779e05a5c16c3515e95ef52ca7310","size":6295332,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e335ea6e6fdf673e537b320a9c194b55aabf77d1a8de548941d13a008bde2398","size":21199964,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-1_amd64.deb"},{"package":"moby-containerd-shim-systemd","version":"0.1.0~beta.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":30091,"maintainer":"Microsoft ","description":"A containerd shim runtime that uses systemd to monitor runc containers","homepage":"https://github.com/cpuguy83/containerd-shim-systemd-v1","depends":["libc6 (>= 2.14)","systemd (>= 239)","moby-containerd (>= 1.6)"],"recommends":["moby-runc"],"sha256":"a8265847f51b994ae68a7e05b2768dca28c037aa8e9499e02ffeb38aa3e525de","size":11959090,"filename":"pool/main/m/moby-containerd-shim-systemd/moby-containerd-shim-systemd_0.1.0~beta.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-common-media (= 0.13.0~beta.1)"],"sha256":"58acb3b752c6503043aaf1cfcdb3ce19ae976ba01f548c7f75dc6a91c0bb33fe","size":150004,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"241bb67ad6d16299940702fe03bff3fc17bff41d8ac8e72ba83290c5232a74c0","size":59709278,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.407-x64.deb"},{"package":"mdatp","version":"101.25.63","architecture":"amd64","section":"devel","priority":"optional","installed_size":155265,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"6c06505c5e2e9fe6a1e63dada236173729f337039fa5333f7a6026bbd0650cbd","size":46140804,"filename":"pool/main/m/mdatp/mdatp_101.25.63.amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227344,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"6a056d7df7133fb877e8f77d234642ca13f88dff9861d74738569fa9c9e02e87","size":58722724,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.302-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8289d669492f741297929c892421d04b3bb0830c5435baa14a578c45ff039827","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019630001_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"6b2b8194c70db56df207d29a1fc982494607c0e6478cf650cffd8973662d1e2a","size":3523898,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.2-x64.deb"},{"package":"procmon","version":"1.0.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":51981,"maintainer":"OSS Tooling Dev Team OSSToolingDevTeam@service.microsoft.com","description":"Procmon for Linux","homepage":"https://github.com/Microsoft/Procmon-for-Linux","depends":["libc6 (>= 2.31)","libstdc++6 (>= 10.2)","libzstd1 (>= 1.4)","libelf1 (>= 0.176)","libncurses6 (>= 6.2)","libtinfo6 (>= 6)"],"sha256":"7b989d56a131bd40a8446ad957f1f546ee9152198564354dfb5476948ba95cb0","size":19862512,"filename":"pool/main/p/procmon/procmon_1.0.1-339_amd64.deb"},{"package":"dotnet-host","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.22","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"08db6e033a295f61b61c4b7145530cce7dbde0dd485a58e67fa98a0873b7abc2","size":56000,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.22-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f04b2dab917e9b09b5b1cdac3033c8048eb822d7dae1991a0827a2c7ccbcbf97","size":156746648,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5274-1.deb"},{"package":"aadsshlogin","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"59c9bf98488d40ce7ec735416708f9117f2d7ec5dd1cc7bdccc4feaa6ff33a9a","size":421814,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020950001_amd64.deb"},{"package":"dotnet-host","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.23","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec31c357657956224fdcd301fbd64535bb2e3343fc10823c35a5c906e0573ac9","size":36584,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.23-x64.deb"},{"package":"mssql-tools","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"9e68a0f83ba7e770449e399b1513edc9826aa0c3a58e3d911ea982a362c6c41d","size":212296,"filename":"pool/main/m/mssql-tools/mssql-tools_17.6.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"849c5f843caf50de8804d6a844501f8cff8af42cd3a515683c61de98e8e8d8d8","size":32812,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.14-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.16)"],"sha256":"d4e52045a7aeb72dcadcbcab02c644253d73d7fc0f9942636a47bd36bcaf117d","size":6612278,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.16-x64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2a4a5500354c749fca852837ca6df935e709bf147995ddd7a1407130931c9133","size":26976612,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-3_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49824,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"32d6d1eae5e5619551b2a2704526ca2e46771b67d7170fd20df9fc0e00ba3da0","size":9653820,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ddd3c0eb7332dacfecf2a3a8ed8988439431c5f9b6b84a08e92edadec9024b08","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"04c85e431825e28b2bbcf43e18f3f8bacfde9686ea78dbba815a61e21078bf56","size":2810,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.116","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"6ac2f5102837c57d6d66a4336a1631b0cc6607b02b8a2271bb6fa43cd9c15876","size":43510406,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.116-x64.deb"},{"package":"dotnet-host","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f058e88012bda709259371aad36f8c8e51494835dd43b09ba3acc8094c1a3cb","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.12-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68444,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.16","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.16)","dotnet-runtime-deps-6.0 (>= 6.0.16)"],"sha256":"c61139846f6ab095ef9b3476feaf955eb82042525da39bc512d8eda7134f8c6b","size":22707182,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.16-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70820,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.5)","dotnet-hostfxr-7.0 (>= 7.0.5)"],"sha256":"6fad7162dbcf639ebe9609c6b4ae4167dc0488ae7c0581a6c322c007259cffa3","size":23193486,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71044,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.20 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.20)"],"sha256":"ee7e20d382b444fad8299534c3133d27180af3cdfe4c82e401298e64bfde618b","size":21927704,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175287,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"c3b8a52fd632b2a4e36fd85f7bf106cd58237cfc098687df8a2312d4d8a46881","size":43432848,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.202-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71232,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.23 Microsoft.NETCore.App 3.1.23","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.23)","dotnet-runtime-deps-3.1 (>= 3.1.23)"],"sha256":"fe6490d54339207c8f946b7f15d5770ec2d08ab37cc55d5c86da27bceb2943a1","size":21817076,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.23-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.9 Microsoft.NETCore.App 5.0.9","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.9)","dotnet-hostfxr-5.0 (>= 5.0.9)"],"sha256":"f0a48fbfc02dec7912902ad28356d282212dc0b6f6823bdcca7d2579bd2296fd","size":21522292,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.9-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-4","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7-minimal","python3","apt-transport-https"],"sha256":"839c820fdbf60e2ef630c5444ed52b172cc6e51380ed2e84f0e5c49784ecdd74","size":12482,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-4_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175200,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.107","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"c78a136dc95f35e7c59d83287185421b8b537ee49bd150312e32c462f463b726","size":43694236,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.107-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.13)"],"sha256":"8dc6bd1555aa8cab7b1e37434a8ba49e24c1d427cf8cdae4203c3a72f901979e","size":7064190,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.29 Microsoft.NETCore.App 2.1.29","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.29)","dotnet-hostfxr-2.1 (>= 2.1.29)"],"sha256":"f6d4a92499646860af596f86a0a4cf4319887149bdbf09807d0cf6a1e0aa56bb","size":20506622,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.29-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.211-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222064,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.211","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"ca310e5c489a53cd12cd5e00535269572d5cb7443dd242eab568629553c1a1d0","size":57090632,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.211-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.23)"],"sha256":"968b3d4a4417eaa5820cd2ac8c4ec35e0b6d67e1efb996461644efa175b2567a","size":5771268,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319917,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.203","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"debc94f20bcb9123d2c3bd8c369049d8af2858791da3a114c953786da442c1a2","size":80517208,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.203-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a5d634cb0d45f125a3760972b8b4accba973a18226083ee024e987860eeefe22","size":2672,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.9-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.13","homepage":"https://github.com/dotnet/core","sha256":"5425475e280b41cdc55df0a2dca006cc0c88c1b2d86662a0c487091e375b435c","size":3523526,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.13-1_amd64.deb"},{"package":"procdump","version":"1.2-359","architecture":"amd64","section":"devel","priority":"optional","installed_size":292,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3499e3c5ec87145fd656dadb03e6ed9ecf200453f83c6bfe6d2d73572e74e7c3","size":95620,"filename":"pool/main/p/procdump/procdump_1.2-359_amd64.deb"},{"package":"azcmagent","version":"0.10.20195.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"4e559522e0c89907e55a576508ec1f76fa15fcf9c93d25c015f92c9fdde6cb21","size":34075864,"filename":"pool/main/a/azcmagent/azcmagent_0.10.20195.006_amd64.deb"},{"package":"mdatp","version":"101.98.30","architecture":"amd64","section":"devel","priority":"optional","installed_size":305838,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"dfec95ca4abf684f6818ad812a68cb324660a8207b5d269029b188e18a6a1afd","size":119529588,"filename":"pool/main/m/mdatp/mdatp_101.98.30.amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19885,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.20)"],"sha256":"843d5b35e21303e2e9575436c5b4c59e7795186dd4a8759eada1cf23cecb6c6d","size":6613502,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":191645,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"e6a14e318f264a02f26a872c2e0c2549b0081075de95b0cde221b438a1f90a37","size":54509148,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71080,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.21 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.21)"],"sha256":"a95ab0fba4b44a70f83d9430731fdd4e33fb7b25b044c301d6db22ce2db50fed","size":21919612,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.21-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"fafcef4bf72ce0f1e04f2a7ec0e81007e608ab5634aaca0798f307b44165f66e","size":499544,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.6.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19856,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.6)"],"sha256":"efb398af9fbaacb29513497bc534be63d3df8ab6b392c434336cbf6ca0ca761f","size":6604652,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.6-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19838,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.3)"],"sha256":"c6f2932646657fc4ba8921d7668e462883a5231dfb7875bf3e4a209aaafbf2c0","size":6601416,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.3-x64.deb"},{"package":"dotnet-host","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"49d4d28af9f1f097b60da2b8518d54729703542556840a988fdb188cdf9a278c","size":36650,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.18-x64.deb"},{"package":"apt-transport-https-sas","version":"0.9-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["apt-transport-https"],"sha256":"0cfe901ab94e9795ee5ef62180dee5192053bc6f132126e40f621b273f545762","size":12264,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-2_amd64.deb"},{"package":"dotnet-host","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.9","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8a635a0abb40c0ddcc6ea2cf3e932a4b529360d0a1cda10a01e5b5fe36007436","size":32906,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.9-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"4264cfb88a9565f15594d8b54ec57bda33e06684acd8d5c9d3081ceb5089e750","size":157254364,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5390-1.deb"},{"package":"powershell","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9132d97fea77d5a8de56b5801b7579bdc1ce669dae084295ddae6b43cf5a3fdb","size":69382904,"filename":"pool/main/p/powershell/powershell_7.2.5-1.deb_amd64.deb"},{"package":"procdump","version":"1.4-13733","architecture":"amd64","section":"devel","priority":"optional","installed_size":11065,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"459930388ecacd1df86996b86fe3c52a714a3a4f9eecd62d594e6e92eb83ec4d","size":1646306,"filename":"pool/main/p/procdump/procdump_1.4-13733_amd64.deb"},{"package":"mdatp","version":"101.80.97","architecture":"amd64","section":"devel","priority":"optional","installed_size":278033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"28535a2926aaddaa715cd559ab06e1db9d70546e355c6c8b57ab9de58feac2f3","size":112232294,"filename":"pool/main/m/mdatp/mdatp_101.80.97.amd64.deb"},{"package":"moby-engine","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d9802f061fd24ef6df5db7c64173525b197a084ff982e6fbf2d6ba4fea047f24","size":22479456,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1035.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"6011d41e8e1db082d711d80b98eb923db9ae2bd81b75a7b8951a32b572b7e6d9","size":226516056,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1035.1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331328,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.309","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"1b15ae59bf908d402771e5f04ce49a9e1e79e56efbbf37f51e44ae85e4fe5775","size":85106134,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.309-x64.deb"},{"package":"moby-runc","version":"1.0.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20366,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"60f4a66821abb4c6bdccd3303ee8016572acd3ced6232beb0ab8892dbb9f39fa","size":6695040,"filename":"pool/main/m/moby-runc/moby-runc_1.0.1+azure-1_amd64.deb"},{"package":"mssql-mlservices-packages-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":1166747,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Minimal install). Provides revoscalepy and microsoftml. Excludes pre-trained models","depends":["mssql-mlservices-python","libgomp1","microsoft-openmpi (>=3.0.0)","mssql-server-extensibility (>=15.0.2000)","zip","unzip"],"sha256":"758899dc2be1d7b359e459d3017ba4c3943fed31a8cdf51159c0029dd84b472d","size":391350996,"filename":"pool/main/m/mssql-mlservices-packages-py/mssql-mlservices-packages-py_9.4.7.958_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.523-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228602,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.523","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"de54ae0983b981fa5ce72bd6d670ae23104b789bffec79ee2cbad1bd415f29c7","size":89337968,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.523-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337371,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.411","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"84f679ab43f1a1f9a9c55801fc7b8be18159b4d39a25e4cdb6e79df3ee4eea05","size":86793590,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.411-x64.deb"},{"package":"libmsquic","version":"2.2.1","architecture":"amd64","section":"default","priority":"optional","installed_size":17370,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"75ff0c9d79a479a06b4639e59143eed78f6278e04f502c682732e26c0bd739ae","size":4564454,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.1_amd64.deb"},{"package":"msopenjdk-21","version":"21.0.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352673,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"5fb5615e574cabaf0dd699797e738034523810d46b15a811ddec67b029d40744","size":176352102,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.1-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.8 Microsoft.NETCore.App 3.1.8","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.8)","dotnet-runtime-deps-3.1 (>= 3.1.8)"],"sha256":"58b750cac76d6e553d55731f03cc484a0f74e1539c86b8d4c1f4361a9a90436b","size":21765344,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.18","homepage":"https://github.com/dotnet/core","sha256":"6bbac63b66f8b3b0cee25d7e0a952f29723bab86f44184cc58d8e7ea05672897","size":41912,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.18-x64.deb"},{"package":"azcmagent","version":"0.9.20161.014","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"a7469057dd3f454c21befd31c105f8d38a50023cb9cd5224e7289fc408ff316a","size":34128190,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20161.014_amd64.deb"},{"package":"azcmagent","version":"1.4.21070.006","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"bb4843d9264533220d1ee8d13edfdec5f639257cdcb8152dbcddf60b07045bf4","size":18061030,"filename":"pool/main/a/azcmagent/azcmagent_1.4.21070.006_amd64.deb"},{"package":"moby-cli","version":"19.03.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83545,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a4d0f91e818dacdb189bbf923a2f1ea393c061e43b32bc0fc916aed5c571efb8","size":16420708,"filename":"pool/main/m/moby-cli/moby-cli_19.03.11+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.123-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.123","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"5ddc3e6e75eb51c2310082120b0bf93c960fbba747869b392df4989ebc8410e3","size":78945110,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.123-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120054,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2291a34f3f8f15c17fbef62e1412c2ded8178608d09a8441fbd65a1f4cb5301e","size":26994720,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"40e5dc44634227b722c8f5d25c7a8e5675a198a9e9befc1e7d646f45ae37677c","size":10587520,"filename":"pool/main/m/moby-cli/moby-cli_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b204c9015fcc56ba8397286a2ec440964c498b65fa9ef83effe64d64a782c29e","size":2800,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.12-x64.deb"},{"package":"sysmonforlinux","version":"1.1.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.1.1)"],"sha256":"da5104110392ea4362980b2a4794f71c3b99fc37372df645193ba73d68e3243e","size":1530018,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.1.1-0_amd64.deb"},{"package":"moby-cli","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60990,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafc180e60330284cb8058dda081a563238121aeaaa686ed3dee211a3cd01eda","size":10587576,"filename":"pool/main/m/moby-cli/moby-cli_20.10.8+azure-1_amd64.deb"},{"package":"moby-containerd","version":"1.3.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126931,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"84c208d774bd93f4b35567359fe4ac51b52aba7861b4b426f58c014818b219c5","size":27658608,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.9+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313863,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.115","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"75839c38082c6a12f50210010f3db9c1c7570853664b5ae31806835b12e4936e","size":78668378,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.115-x64.deb"},{"package":"moby-containerd","version":"1.4.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120026,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["init-system-helpers (>= 1.18~)","libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"5f8a73e8b1dd7ef167b85fe8778d3879ed0cb76c7493d89bfc286e8c03a1cbd7","size":27328778,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.8+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"758f26010760cd1b7e36aaeb4c04903d1b6f0544809e5c2d2b302d130a5d553a","size":3523928,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eb256873e4cc87bc58d309da546fa07c13fb3b979437a3da2036cbce0cb4f1e4","size":158763596,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4895-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.518-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228800,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.518","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"bdd3038f5965fae2eec58a1b8dcedc54b4bd069e61dc5a34ada6b7122a2aefaf","size":88698742,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.518-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.516-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":229026,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.516","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"39e874bcdef1e41b7f8ed6f9747d4b9422fa29a4bea185934791b6b88d819cda","size":88800084,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.516-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.28 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.28)","libc6"],"sha256":"9e32978def8d2974dd8e1884e0661fd89a66923ae40d8afa8e88ec5a804f3b55","size":120692,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.28-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":3125,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"fcf42631731b58d2c9017fde53ff7c1f5cc24013f264e2484e5c9fcad000dbc1","size":853504,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.4_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.514-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228764,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.514","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"fc29ebc3fc802213fae488f6b19c26b288e4c2dcf678d52ab05a255cfff9a7f3","size":89261598,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.514-x64.deb"},{"package":"sysmonforlinux","version":"1.3.1","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"7f12efadf7332ca8cf6f84980b4dab8947b35e57e4ea159b757678da4c685cce","size":3204094,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":8998,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"e46789887409f1c15a58e15de83dcb4ab0ee0d85bf43b7eed26c95164173615b","size":949024,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.3.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.1)","libc6"],"sha256":"4bca2d54df5756f1b361876940374502d13bd7f6a282080e8479cb44f2bd2aae","size":143974,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.1-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.12)"],"sha256":"42f106527e3629dcb4ad94c463f7b4fbec07587d3899b9f3629f2eb975611792","size":6084640,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.12-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.17","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c95488e066f938e6293333142d9d28246393ab388e8132ec0a131448ba322973","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.17-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.309-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367144,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.309","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"f3a9e3fe50a489fed2d245de896f015ddad0bccd8de94f7fc471711327e272fc","size":96629046,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.309-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3976d4e13d7479b7a9768adadb6ed39a8ae039f6e6a6feff7f9fee3f24cfb08b","size":156787220,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5312-1.deb"},{"package":"dotnet-host","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.21","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"11057d665df8116673ac80ca53ba4a9a3269bfa6ed388fa2b4fdb19137419acc","size":36516,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.21-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319710,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.201","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"548e27d4c5b6560f91a13debf2e6337d1c6fa4f7640edf457b4262693adc056a","size":80538626,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.15.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.15.1~beta.1)"],"sha256":"debc3c3de7c09b9cc825fcdc157e74b7a1d436c8f294cd3afe766a114836f675","size":80022,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"iotedge","version":"1.1.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":21774,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.9-1)","sed"],"sha256":"fbda5dcebc6c8b304b635fb5bc1dad31a29c58ff904da74077f77477ef065f52","size":5205412,"filename":"pool/main/i/iotedge/iotedge_1.1.9-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"17e137e6afeb1ecec0f417dfad45ebbc04b5ef0f5eafec995e9972e5abffae0d","size":10214,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015090003_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.26","homepage":"https://github.com/dotnet/core","sha256":"186548e9c722eebb8317a826fb1dcccf1a402e33f086d7f88b7695bb155c1f22","size":42036,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.26-x64.deb"},{"package":"mdatp","version":"101.34.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":149583,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"c74f1485c2c1741190b1b7159077b1dc88ea023d2be967f62cd60da0e151dde8","size":44125452,"filename":"pool/main/m/mdatp/mdatp_101.34.27.amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174867,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"f3d8ee4df9a80856a1dd968a1ea80e341c09a26eec7907a5cff825f234271280","size":68369482,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.1-1.ubuntu.20.04_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4824,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"0fded967b3068f387c96304c3df40e4f1475654ce7e981eaee08aa0261a1e6ce","size":1861004,"filename":"pool/main/o/omi/omi-1.6.8-1.ssl_110.ulinux.x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"bd8a0ae1102ed9e2ba317529c889024ac07fd0fd2a2a053e0af1938805ab35eb","size":1314134,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.16-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.20 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.20)","libc6"],"sha256":"568d44dc56ba8b9a1b9ed49699575f5bd9735adde91ce76f8a594185989e924a","size":120832,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.20-x64.deb"},{"package":"moby-cli","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70472,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"94a944da36bf361996e26544e4173f0c068093d455b720caf5fac4447085f306","size":12147772,"filename":"pool/main/m/moby-cli/moby-cli_20.10.7+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"43761ba143682b53b883675cd17a70bb7f89defa6162f7705354c603cb8284fe","size":152285560,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2628-1.deb"},{"package":"omi","source":"omi","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"f724b1039e8ec0b382fdd69a5e753666e0f752b8b8fc8a4504e218dfc1e96c65","size":1884694,"filename":"pool/main/o/omi/omi-1.6.10-2.ssl_110.ulinux.x64.deb"},{"package":"powershell","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"93612aa09171838e997c85b78f6fe42041fbc73741b9751f975b1e908d6e77f0","size":69457500,"filename":"pool/main/p/powershell/powershell_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-host","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f39f88e19d93e296841c9a7a072ea4d8bd6855cce4278f5ba0a51aaf1508785","size":32768,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.5-x64.deb"},{"package":"moby-cli","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":35184,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"fafb6aac41b3af3df5bbc6652d16408b3c4349105c60f6ba9708a73898520447","size":13037282,"filename":"pool/main/m/moby-cli/moby-cli_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"6c363e4748de6d674af31db7ba09cee89dae9c22636e883bd418225c08b64926","size":2127714,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.10-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"1.0.6","architecture":"amd64","section":"java","priority":"optional","installed_size":83681,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"5523be2d7b0a502b34268f94b1c95d4a892500b1ab69a1ab0e9c9cafb7c62bbb","size":77280998,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_1.0.6_amd64.deb"},{"package":"mssql-server-sqliosim","version":"15.0.2000.173581-5","architecture":"amd64","section":"misc","priority":"extra","installed_size":688855,"maintainer":"Microsoft Data Platform Group ","description":"Microsoft SQL Server SQLIOSIM","depends":["libatomic1","libunwind8","libnuma1","libc6","adduser","libc++1","gdb","debconf","hostname","openssl (>= 1.0.1g)","libgssapi-krb5-2","libsss-nss-idmap0","gawk","sed","libpam0g","libldap-2.4-2","libsasl2-2","libsasl2-modules-gssapi-mit","tzdata"],"sha256":"da98d84586f19a9ddce428f04a504b3afd2a78a546084ddb97be87261cb1b2cd","size":275507482,"filename":"pool/main/m/mssql-server-sqliosim/mssql-server-sqliosim_15.0.2000.173581-5_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4669-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"31e20c09d20ae7e532ba362411737b526cd08ad64ced422fa6ffb46285c243e3","size":227705672,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4669-1.deb"},{"package":"mssql-tools18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"4475bc79d1a909605846d351ed237631e7f09d33c0125d4dbbf265e72f79b9aa","size":211222,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.0.1.1-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.521-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228520,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.521","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"a25df3dbd37b6290b8e135ee7990b2a4e71c80d45fcd93dabfede62846b41faa","size":89215248,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.521-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71101,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.7 Microsoft.NETCore.App 3.1.7","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.7)","dotnet-runtime-deps-3.1 (>= 3.1.7)"],"sha256":"72280aa6efa11801c6122ac04d69743ef2d174c006b016e95dd7a5ff6cdbeca3","size":21784186,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.7-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68403,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.8)","dotnet-runtime-deps-6.0 (>= 6.0.8)"],"sha256":"c00f193c145dbe8b518b9eea0506db8f9667205eb953e0399c9652eb79d1dec2","size":22977266,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.8-x64.deb"},{"package":"moby-compose","version":"2.3.4+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25856,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ef10e25980ca3063e0e47aa1e4bf696acce9d18b461d8bd52d72be497f3b6f5b","size":6533904,"filename":"pool/main/m/moby-compose/moby-compose_2.3.4+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16145,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.13.0~beta.1)"],"sha256":"9dda765ea87c75ac95ca3bd36ea5bef5935f0d56de1d39a9c65d903aaf174436","size":4976178,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"641b1d131285d90449bc0e2051ca8b47b1cc1a8c6221b137dbf3f224e03e3664","size":3505028,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.1-x64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"eac97fb739bdd5b39f9813f1376cb0cf419d87657ae5f6c2fb74b263ff5b398e","size":166080896,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3023-1.deb"},{"package":"servicefabric","version":"9.1.1230.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"86d09942e5f1b9aaaa51d714f1974d4cd9c6e6128b102cc3c103d9eb772770ec","size":219806842,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1230.1.deb"},{"package":"powershell-preview","version":"7.3.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":195779,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5cca8118d8e2238bd4c7ed40a2cd370c12320ea5096aa5dfc6ab4911f3d6e7f1","size":71153972,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"6e37c1a434eb56c348f0371a658bc3e68f1332fc9f41dcb94a5c668a57434ef3","size":3509404,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.8-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68341,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.10 Microsoft.NETCore.App 5.0.10","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.10)","dotnet-hostfxr-5.0 (>= 5.0.10)"],"sha256":"a24a42a7bfccebe91fa973f09288b4158632a057d8a87108806f5ffaf00dc720","size":21664136,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.10-x64.deb"},{"package":"libmsquic","version":"2.1.0","architecture":"amd64","section":"default","priority":"extra","installed_size":22568,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"1b4cdb99cf8e012c21098ac60cd6f1a364e4dc191173cb5e8782032eaed30e39","size":6402384,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.0_amd64.deb"},{"package":"netstandard-targeting-pack-2.1","version":"2.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":19773,"maintainer":".NET Core Team ","description":"NETStandard.Library.Ref 2.1.0","homepage":"https://github.com/dotnet/core","sha256":"0f12001d1918f7ad2452d14d70bd396c82080b691407735213e90de637061f57","size":1476016,"filename":"pool/main/n/netstandard-targeting-pack-2.1/netstandard-targeting-pack-2.1_2.1.0-1_amd64.deb"},{"package":"libmsquic","version":"2.2.2","architecture":"amd64","section":"default","priority":"optional","installed_size":17401,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"a4972341d1579569c738a1de4118fc076cfcbb4a4e5b63e1459ddd59b29eb3de","size":4569798,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.2_amd64.deb"},{"package":"mdatp","version":"101.04.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":68366,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"c121d4fb5728139f2b3ba50d5de6fb5703e1139118af2262056c4d2818d7db0a","size":20445826,"filename":"pool/main/m/mdatp/mdatp_101.04.76.amd64.deb"},{"package":"moby-cli","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70537,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"85cdb0a043d8edfcfe82144526661da13438201edb7d2984df0cb6c26169a0ab","size":12181032,"filename":"pool/main/m/moby-cli/moby-cli_20.10.5+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.10)"],"sha256":"eea82ce5151760291cc9ad3d16eeb43f4fa1559f91ba0c186354822cbe97bd54","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"5aec2ea2a881cb50617647c4aee0aba4618e5f05de385a148a93ca0b9182192b","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.30-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1e55812af3a9d6a640104018bc37157ae7c5c88a742bd43bb86cf0cf6f497884","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.21-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"c73045067b66eef7d977ef52b3795d35e3b82a4016b45f32a30c3b2108e4bbfd","size":3521952,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.0-x64.deb"},{"package":"azcmagent","version":"1.20.02012.246","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"25125a7d7badbebb380d09851eb4a4b5969a081e7f1c6318c9ae046d76a076ae","size":52490324,"filename":"pool/main/a/azcmagent/azcmagent_1.20.02012.246_amd64.deb"},{"package":"moby-buildx","version":"0.8.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67232,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"fabbdaf903c269a615a9099dd9affa8476ec75e68ba54b2d0a88aa4442cdf493","size":23117324,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357028,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.202","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"7cb68886075b3361642aadd467bb4335f635d9471fcc3600d97cf8d6ec6ddaa8","size":91828358,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.202-x64.deb"},{"package":"aztfexport","version":"0.11.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"1deb19cd102b06a8444878c2b92effc0fa6599d44118519001555136c6614a1b","size":9403238,"filename":"pool/main/a/aztfexport/aztfexport-0.11.0-1-amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.0)","libc6"],"sha256":"7be696a38a2b7c6c0d000678b8dc028d48651dfc409f9c6cfcb091b2b8604fa2","size":140842,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.0-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"16595bc03b136fdb2fe41c5a326370472452543e6d320f5c3dea04f8e5f66b1c","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.7-x64.deb"},{"package":"moby-cli","version":"20.10.16+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":59397,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cddad90c0641734a6d2914e2ae5c9ccaf101764c6301dc6ac2cb1c4d72cf22fb","size":10275940,"filename":"pool/main/m/moby-cli/moby-cli_20.10.16+azure-3_amd64.deb"},{"package":"dotnet-host","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"47eae0ac1d31cfe189c0d1b7b3d3804512dacd5bc198833ebfcf25710e6ad684","size":52552,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.7-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70840,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.11)","dotnet-hostfxr-7.0 (>= 7.0.11)"],"sha256":"fa711a6984616fe99212ded1e724154711ced7a404e8488d346eae0e0ca7efc6","size":23210182,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"mssql-tools","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"17d9bec19aecf32db61ff9be63c51d0b5eb332965deacb119915d1aecc447faf","size":210584,"filename":"pool/main/m/mssql-tools/mssql-tools_17.8.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.19)"],"sha256":"b75917fef8f2599d1d589e0852f8d83a125f236d6223693a5d07dccfb52e1719","size":5769864,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.19-x64.deb"},{"package":"libmsquic","version":"2.2.3","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"834decab349d3505421a5fb3de2e75d9d28c540d6cf60d5d83c631f7d866695e","size":4576276,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.3_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.11)","libc6"],"sha256":"c5da373a2a75523c25dd212534c37ed6bb14054de2a174e3fefe32df6595016e","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403101,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.402","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"882135010f01d9e5910fa74c786791851b205b7968cab9146849169a06caba7e","size":108189490,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.402-1_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"8bac3dc53fab2fbcaf0a4a9406e72934a9070698d7678bee05a3b720cc580b8d","size":10144,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.015950001_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317508,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"fc126a9bb2987bfa6425e72e24d481e98d1fb80abff88558ec135a5b5a42c891","size":166575154,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20.1-1_amd64.deb"},{"package":"moby-buildx","version":"0.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76252,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"e20e3ad6da8f27a77ffd2026ad8c4895cbff849ed7353788178b62be1a948d3c","size":28218310,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.4.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120038,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"3117b7ff5601d415141163ca19a32a6eca87f34c653a3f9b8a9623948c01810c","size":26961964,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.212-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222404,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.212","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.15)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.15)"],"sha256":"d0310b6dd5b9f2ed3e37c534d2cbaedf0a8da4e1122a2c2b6976e95ffb5dc148","size":57384856,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.212-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71083,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.24 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.24)"],"sha256":"96893026ba8f5d7ed0365960bd2f1e9b4d915bb3e1fb910ae5bcc3815cfb648b","size":21933302,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4629-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6acec0ac75a21a0081b2000090c2e0dd9c79016e1d85e8eea6129e52eba3b87f","size":124360040,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4629-1.deb"},{"package":"mdatp","version":"101.52.57","architecture":"amd64","section":"devel","priority":"optional","installed_size":186593,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8fefc473943f5096ef74a41e2d1830f90a09e4cd96609d734903bab67fb1503c","size":54831640,"filename":"pool/main/m/mdatp/mdatp_101.52.57.amd64.deb"},{"package":"unixodbc","version":"2.3.11","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11)","libodbc1 (>= 2.3.11)"],"sha256":"c77073cc0e8c641e708d08f9e9360541d98c2d9b1cefce56791866f788bd329e","size":51530,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"caebc792731e03b35387c703705967fed4e7215b649e9c2cef74632f2e38c986","size":227774608,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4806-1.deb"},{"package":"dotnet-host","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"cf12c37d476d235791f785f1e62688fb3f2a4e59c81629b8d8b63e5bdf6fff34","size":32924,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.6-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8c3aa46619d36596cc6325c2e18ebe70611f34fcaeda4c9311e6ccf6fc01d60f","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.24-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"c1d0c68d3c49d41e233931a6298b2f0a659b557beb4a3a2aa4d306583a373a32","size":3509660,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312664,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.107","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"5698bf62dedf1a1ec22304245d131c274e75f494c78a7b387b8b7a142ce28e74","size":78043244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.107-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.814-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241067,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.814","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.26)","aspnetcore-runtime-2.1 (>= 2.1.26)"],"sha256":"e32d4dd6800c2075c20001828e4896d33759c5c4cad8840cfb5e0b0a61ff33c4","size":91748748,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.814-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71116,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.16 Microsoft.NETCore.App 3.1.16","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.16)","dotnet-runtime-deps-3.1 (>= 3.1.16)"],"sha256":"6f8196101ef19b12fa94c9db6642afb842172db9c391b764126b3567f06d6e93","size":21769106,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.22","homepage":"https://github.com/dotnet/core","sha256":"3d288e067550427b67057f24260ea8cbe2f15f7620aa9f4141f5836d848af2f8","size":42338,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.22-x64.deb"},{"package":"moby-buildx","version":"0.6.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59988,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"55d1b3342acb3451fdd1e8b4dfba53069c3f928e393235ea88349e1e0832462e","size":20975064,"filename":"pool/main/m/moby-buildx/moby-buildx_0.6.3+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.317-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331557,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.317","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e332d89262c096975451b24ee0330af9d96f3862d2088a6f322828bdeae3aa80","size":85292586,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.317-1_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"65f34ed79c6bbb46d6cf18e13dbaa462282b81e4b18bac52b2742099208bbd2e","size":155268560,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2796-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.28 Microsoft.NETCore.App 2.1.28","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.28)","dotnet-hostfxr-2.1 (>= 2.1.28)"],"sha256":"94d239c104eaeb8de96537448c51e219ec89585ebc13ff63f5626677a46df514","size":20814298,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.28-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.113","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"08b51645b7483e355d8560031b2705e4cd6cb93c3f0c37c52cc63fdbd7c3aad1","size":43818916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.113-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222041,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.202","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.5)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.5)"],"sha256":"7612ea0058043ef44665071f0360de87856353141e427390ee7181e219062ae5","size":57105162,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.202-x64.deb"},{"package":"dotnet-host","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b6ceccc4f0feb49b917b66af106c196c9407a5b57ed9b67b27f8aa92f2204c2f","size":32600,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.15-x64.deb"},{"package":"azureauth","version":"0.8.2-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"4a5f24a5e999a8a6c88dae58182bb1edf0259f0b5ef49e4b3d08e15384072bc1","size":24113038,"filename":"pool/main/a/azureauth/azureauth_0.8.2-1_amd64.deb"},{"package":"azcmagent","version":"1.3.20346.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7d8627f1d460601c10e472668a5e521c4af13f7df19aba55af96d1e453f748d4","size":18323922,"filename":"pool/main/a/azcmagent/azcmagent_1.3.20346.001_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.2","architecture":"amd64","section":"default","priority":"extra","installed_size":17616,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"e605e0cbfcd7061151efb24692097b4ab09ba6417b7a50bab2b5bf4496dce170","size":8349226,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.2-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-host","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7c9909580189ff3d3d91ac83c11dc3ec97ce862e652ca67ea6738dbf83eeb1bc","size":32448,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.20-x64.deb"},{"package":"msodbcsql17","version":"17.10.5.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"5a3ab39be1db72785a3f912c04d8e5a90c27fd7f628a413405d9b9033b84880c","size":749060,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.5.1-1_amd64.deb"},{"package":"azcmagent","version":"1.9.21208.007","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"48a8a77fcfcecb4a37b9a959d1db706b0e0b0508fd6730851f3dcf7a442f6617","size":49545864,"filename":"pool/main/a/azcmagent/azcmagent_1.9.21208.007_amd64.deb"},{"package":"azcmagent","version":"1.34.02440.1130","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"539864450190c5dcf44324c571a7ba99ed9ef4c74a99b9d97859c93213d4e815","size":54823178,"filename":"pool/main/a/azcmagent/azcmagent_1.34.02440.1130_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0fd87a5a6f9a7b63200abd189cb38286e8c58cd9fef34fb7ba0c028210bc69b2","size":270460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.12.2.deb"},{"package":"dotnet-host","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fbbe8b30c4b7c6c89119dcf4b59022cbb748466af203c2d5cfb8d8e6de55291c","size":55768,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.4-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.12)","libc6"],"sha256":"0842eef025ce499ec4ab04bb9b21baa16e7e4c92047478a1e2d2edeee7a9ea8f","size":143910,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.27 Microsoft.NETCore.App 3.1.27","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.27)","dotnet-runtime-deps-3.1 (>= 3.1.27)"],"sha256":"17394b210f5e438d273818dece094dbd34274b82cf7724b025b87b2cc20ae91e","size":22010700,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.27-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017540001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d5f98751774ccae04197b7d4932efe8f3545afda5dd309a8171805df6dabddd1","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017540001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175192,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.106","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"4639c629160639de7eec4619b4830e021b24fb0d30500f741b17d1c8dc1e604a","size":42924592,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.106-x64.deb"},{"package":"moby-cli","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"f735e2f6f437b7f03fa98421a70b79112f4c8b4f8fa1d209025b1bd0b0d2e70c","size":12121304,"filename":"pool/main/m/moby-cli/moby-cli_20.10.3+azure-1_amd64.deb"},{"package":"virtualclient","version":"1.11.5","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"45d2ac561ea209473e7647cbf18e544574b7a3c1d3b56a33c78709c13993b497","size":44774340,"filename":"pool/main/v/virtualclient/virtualclient_1.11.5_amd64.deb"},{"package":"azapi2azurerm","version":"1.4.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20908,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"0c6f68997ef36825f1e97b05ed227c8f12fecb3356029da3e10423c72b650661","size":6728440,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.4.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4604e1c0b284a336d13f9ec0182f3ad13c28360c6b76f441c9e66784ac6e36d3","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.2-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.817-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241017,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.817","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.29)","aspnetcore-runtime-2.1 (>= 2.1.29)"],"sha256":"7e9ec00a9f124622c300510ce9bbf55857b4b03794f7583179f3c0f13a8ef02b","size":91745548,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.817-x64.deb"},{"package":"blobfuse2","version":"2.0.2","architecture":"amd64","section":"default","priority":"optional","installed_size":27889,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"2c59f5daab9808c18034460a5fbf417896af6ca6e6f14c293afd9dad408233c3","size":13168278,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.2-Ubuntu-20.04-x86-64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4837-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e440ee439dedac9ca32f22d071667983faeac58a7824679e8613b1f0615baed2","size":227762280,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4837-1.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68375,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.1)","dotnet-runtime-deps-6.0 (>= 6.0.1)"],"sha256":"b0ad2a9ef9c20650069f9df3f122406ac747aa5502d35d941a367a8c9b6691bf","size":22974272,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)"],"sha256":"ad5397ecbbc1ee438967c77c1d946a245a3d591d4427a83c3f54dc6d0fd597a3","size":5099424,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.28 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.28)","libc6"],"sha256":"bdc41745512364daa565cf6fa586fc3546fd8432ef70c179c31bcf5595cd8a30","size":143620,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.28-x64.deb"},{"package":"libk4abt1.1","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3328758,"maintainer":"Microsoft","description":"Dynamic Libraries for Azure Kinect Body Tracking Runtime","depends":["libc6 (>= 2.27)","libgcc1 (>= 1:4.2)","libgomp1 (>= 4.9)","libk4a1.4 (= 1.4.1)","libstdc++6 (>= 6)","libx11-6 (>= 2:1.2.99.901)"],"pre_depends":["libk4a1.4 (>= 1.4.1)"],"sha256":"0a507ffbe27b49127d53c265b9ef259d0fd993c30765fd612a1ef4054985dc50","size":1785149492,"filename":"pool/main/libk/libk4abt1.1/libk4abt1.1_1.1.2_amd64.deb"},{"package":"dotnet-host","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"395725e796a51348e6853245c06d0ec5b81cf038cbc9ebc4ec9f591f12ce7681","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.13-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a027e51a6927327dcd7f0e2ed2904119d3f474f54e1e521405cbbac79e619e2","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"34bdb4adc9be76d1496ff8281c4d66aed4ba8a5baf656fba7f75d9225d00354d","size":227764116,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4753-1.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.2","homepage":"https://github.com/dotnet/core","sha256":"1e1b3c93eaa1f6fd742e7dd166928435d56ccce4217e1bbc6177f172977665a7","size":2567262,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.2-x64.deb"},{"package":"aziot-edge","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.0-1)","sed"],"sha256":"5649433a6fe9e89ec2fb4e9c0d2bb3979491d11c1bce35e7e8e018c909e15474","size":4203740,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.0-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.2.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17912,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"cb26d5cba1d1fa611dcf4f8dc7a5916bda3dd6b9077c4d91230b056e8c694130","size":3802656,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.6-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":175473,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38112c1586a450e87827823c559001662ca0950d580a611e3bf58e7b62791072","size":70114408,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.5-1.deb_amd64.deb"},{"package":"mdatp","version":"101.23062.0010","architecture":"amd64","section":"devel","priority":"optional","installed_size":386184,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"55b7f08fa4748037e5f67c6ca844e289da69212b1c52b7e7de6ae9553a583069","size":133718266,"filename":"pool/main/m/mdatp/mdatp_101.23062.0010.amd64.deb"},{"package":"azcmagent","version":"1.33.02399.1041","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0306d2c2afa192ef8a6ed1d99aa34a59af54f88b20cf4bf9005316bcba9919ef","size":54719874,"filename":"pool/main/a/azcmagent/azcmagent_1.33.02399.1041_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11742,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"75232addc8ebe5da0ac7bbbf605f012da77390de8db6be5627c0c1d8fee7a858","size":1313808,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.9-x64.deb"},{"package":"msopenjdk-11","version":"11.0.11+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316734,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"57aa36a8dbde09c855491a13efcaf08cce3e3c4737f30683ed123e3b4f7896a0","size":193400792,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.11+9-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.6","homepage":"https://github.com/dotnet/core","sha256":"e4f1574f7e6c0190741e4fad61ab8bcdf3576560688849c02f5b6a6e2600e855","size":2119388,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.6-x64.deb"},{"package":"moby-compose","version":"2.12.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"771e7aeb4360c19c59d8e341fa49388ca5f7368745a3ad70b48ed20554d83ca8","size":9661604,"filename":"pool/main/m/moby-compose/moby-compose_2.12.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave","version":"0.18.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":122255,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34b182d515b35049e97abe846e4e637fefbcd10198dcfdb12c342df7cd300dd3","size":33313338,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.4_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.22)"],"sha256":"4ff02ca997b12cdd067c268f9e173a5fb0383f7cb804b5458f460ff320b39cd3","size":5772820,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.22-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3284-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d09699e241214dd8462b0d0e1a52f6995d7c1d3fffb72926517a1a7d2d495631","size":208712656,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3284-1.deb"},{"package":"msodbcsql17","version":"17.10.4.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"31e2c8d37b011aa51d902bf14f5f7919e69fbe52ed350fa3a2e9b1e6c8fbaa29","size":744572,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.4.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.107-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350056,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.107","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"fc203dd1fe23030645b49fa957ca63bc80f3f14dd14c12a07be5ed5d08fe0e20","size":90663186,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.107-x64.deb"},{"package":"moby-containerd","version":"1.3.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126906,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a7462ad88c12cc2ec12a42cae20a13ed377751c459bd24864cd3bb2d9725a0b6","size":27655928,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.10+azure-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a4bb8a4d80a2c8bd3faac36527a945ff000ae68a31936645a711fa9081c3059a","size":1885604,"filename":"pool/main/o/omi/omi-1.6.12-1.ssl_110.ulinux.x64.deb"},{"package":"dotnet-host","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.13","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b478f09525bbacaa261ff0edb3e0faefc648861cd5cf1e582849cf2723a086c3","size":57230,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.13-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.16)","libc6"],"sha256":"92171aaffa0102e35a70d9d06d05bf47af94febe99aff6cb09c45f864289f64e","size":142298,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.16-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4426-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9367c0d31cdf86346a5404031e7e6641f43e2940ef39c4e40e358662f7c9e891","size":135350632,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4426-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"35da4e0bf4c9964644f931cf81c3bd6bdfa3dc1b2a1ccc4893cc3263ecb373b2","size":124424256,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4653-1.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"43d23398197e62254878b0dbebfb4192d6edcb529c898735fd127ee8bc2aba13","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.6-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"915a04a17975831a96837f44f068716a250b9cbe7c2911ac646c779825c2b3af","size":3519794,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.4-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"6fe87e736d18910d0fd815aa15aa0ca8c8d0c7fa260106a8d528d1cba940840c","size":2568046,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.7-x64.deb"},{"package":"mdatp","version":"101.65.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":209057,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5455c6d16c5a5aeceb81a3f17a3bc7b81cd0bdb0d2f1d70a3014c9ee3ad58b59","size":61280098,"filename":"pool/main/m/mdatp/mdatp_101.65.77.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"6270ce975a105d44cb78f6c9b9c1815027262173d03a8697f307b56fb250fc57","size":415558,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020250002_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e77af1b8d2d5d5973cd7e633cb4be7c7ad4b994d59bddb890dba5c36c02aaf55","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.6-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":319790,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.200","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.2)","dotnet-apphost-pack-6.0 (>= 6.0.2)","dotnet-runtime-6.0 (>= 6.0.2)","aspnetcore-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"1025e3b198f62a3624e66ea5b3c3e693ddb53ebedf8a74e56dd221f180bba9bd","size":80440736,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.200-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350086,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.111","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"420c6cbef880bde26abc7174ee4e182b764f04f02803425e340dcafdb1f6790f","size":90702250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.111-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"73608bb57c2aa9ef501d872841e7496c78bd2a8dda1b57a0271007e3106a0a96","size":135279404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4483-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"760dac7d7083b3f28b2fccaa7dfc529c6b71df58e70239c186da94b16d0f7d82","size":2130012,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.12-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.116-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":311307,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.116","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"70b59d15f436ace27bb104305b9986d4e9bfea432730e2c5d3d287cac1600f9a","size":78307442,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.116-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b2e8605baa0ace12a5a635924875fffedc8e73688d592758212e9fc6c3e23cdd","size":228284784,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4868-1.deb"},{"package":"blobfuse2","version":"2.1.0","architecture":"amd64","section":"default","priority":"optional","installed_size":31581,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1a0543ab79bb13a82781e025c48327af3dfa11c6df34ef4a86d08b8d137ce160","size":15604716,"filename":"pool/main/b/blobfuse2/blobfuse2-2.1.0.x86_64.deb"},{"package":"moby-containerd","version":"1.6.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125637,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"cd3059a1607539a0677546b39f4e57ab5287c36434e35e122dac8f0a108428d6","size":31522474,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbbfcba94cbb3b29315d952cf4f29a7012b6f46d12324aed88f56c9db039901b","size":52476,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.8-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.32","homepage":"https://github.com/dotnet/core","sha256":"92621393c0a814a263f3215121e9a9c722095c125f1f24939a43a56265ff706d","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.32-x64.deb"},{"package":"moby-compose","version":"2.6.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25932,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"526974e4a68abb33b24b36b99fa42a886ea332f1c2581f71dca0b998f35581b1","size":6564228,"filename":"pool/main/m/moby-compose/moby-compose_2.6.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87d355268b192b05afe470e50bd08a6d88145a53b4ae60dbaa21c677f2eedc01","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.14-x64.deb"},{"package":"libk4abt1.1-dev","version":"1.1.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":63,"maintainer":"Microsoft","description":"Headers and cmake files needed for Azure Kinect Body Tracking Development","depends":["libk4abt1.1 (= 1.1.2)"],"pre_depends":["libk4a1.4-dev (>= 1.4.1)"],"sha256":"e04028542d35fcd7d3db2343227afc8e44f3bdc856dbe39eda0f14c31841d55b","size":11314,"filename":"pool/main/libk/libk4abt1.1-dev/libk4abt1.1-dev_1.1.2_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.31)"],"sha256":"90c26a2bd56961ae41a6efcaabb3a0531cddb8f9d160d9a490c1c4863e4a6e9d","size":5772724,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.31-x64.deb"},{"package":"azcmagent","version":"1.12.21299.035","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"1d51a95cea00deeba08e8e375e35cc825473c370dc8190bfa00dd8c6bb8b1c5b","size":49869060,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21299.035_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.3)","libc6"],"sha256":"8985e06ed129ed00a442ecb28947c0f09782607633808fb2389c5f87f7bbf04a","size":143962,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.3-x64.deb"},{"package":"deliveryoptimization-agent","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"2418758faf92cb4bf8879b592100213d6f2943c38e0713080ca1937145df2c4c","size":162138,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_0.6.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.12 Microsoft.NETCore.App 3.1.12","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.12)","dotnet-runtime-deps-3.1 (>= 3.1.12)"],"sha256":"9bfb94481c3dcb25abbffdb6d6a62d6519e5e27b285df328f754ac5a857cba07","size":21905222,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189443,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.404","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.10)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.10)","aspnetcore-runtime-3.1 (>= 3.1.10)"],"sha256":"85d70b980de52d663a75b268cdbd64ec337308b71580ed2acbc85fa1e1d5bea7","size":48212190,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.404-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.114-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.114","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"d87754f9c437e4381313f3038ad558108e90bf1bdb3ea853701d085f2b64a51e","size":43875266,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.114-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.615-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237152,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.615","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"efbe8596983b759748d90f8700ab6b5d336beeb78bf8f9b0bef4952815fc650a","size":90796912,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.615-x64.deb"},{"package":"moby-runc","version":"1.1.9-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13373,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"provides":"runc","replaces":["runc"],"sha256":"9f6f3d00f1615b8859b1295852d27de3ec1cdfc78a9dad5b0911120c9ca11145","size":6707904,"filename":"pool/main/m/moby-runc/moby-runc_1.1.9-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.24","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d8c45cb378057394ad53edddb0a970025ca261743fa4621687c927ff5a445edd","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.73.77","architecture":"amd64","section":"devel","priority":"optional","installed_size":274981,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"5759eeb478f8225529149dd0891eb9f14d8ba47e8995590890d4de15964649c4","size":110911854,"filename":"pool/main/m/mdatp/mdatp_101.73.77.amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"recommends":["dmidecode"],"sha256":"4a101dc3b973bf0346fb74e616eb8b0bd0f152e56ce9719044797161c87105bf","size":522226,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.6.2.deb"},{"package":"moby-engine","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":85899,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5a3722c7d132a27f557a004f4e40f96b417a5eaca4ff370f60ba44893e9888da","size":20423424,"filename":"pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2ce36274b152224ea6864bba49bf799c495f71fdc72c940cc76b143e5c2ed48c","size":9775330,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"blobfuse","version":"1.3.8","architecture":"amd64","section":"devel","priority":"optional","installed_size":33217,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.8 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"ecf0fa02ce55d860413a66de453e7c6b795379e7fb5c0ec2b38f4ac49bc70a5d","size":9492388,"filename":"pool/main/b/blobfuse/blobfuse-1.3.8-ubuntu-20.04-x86_64.deb"},{"package":"libiothsm-std","version":"1.1.13-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"e96bda6606c62fc82f3e479e3fd5b122a2ba55f9c8f10d795fe80ae8472a4ef7","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.13-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312610,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.105","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"633cc12c08795b939f67990b8677cbd693cede30ae09bbbd6bfed6e7397070db","size":78307244,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.105-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.8","homepage":"https://github.com/dotnet/core","sha256":"4c6e03f5f8eca555a2020828204c7fedfee30fe0a4f22b02c1f251b5929aa05f","size":3399676,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.8-x64.deb"},{"package":"moby-cli","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70473,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6fe21617935a2cba4192e620a560ed7c320c9a83bcf09e1e3693083e13f56bf1","size":12149140,"filename":"pool/main/m/moby-cli/moby-cli_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.315-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331510,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.315","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"042fddd433534b98b33305082873f849468056d4a226d1d1addf226c19a95b82","size":85195842,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.315-x64.deb"},{"package":"msopenjdk-17","version":"17.0.1+12-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323380,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"36a5d50656f0bcfc4aeca6a388c924e88d47a994afa12470e24468f30b0cf90f","size":191722368,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.1+12-LTS-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189502,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.7)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.7)","aspnetcore-runtime-3.1 (>= 3.1.7)"],"sha256":"65956ec977a78d78aa4bd9bb4378fc0b4c3936c31f1da92c132211a86cc61630","size":48157850,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.401-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.319-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.319","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"385918a9f7fcb909bcab0f0a13ed6db6edfcb35a41f9123105495331ec28bee4","size":85294962,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.319-1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.2.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge"],"sha256":"ff240391cb2b7a0aec117e660262566509c71509b453620154aa98782c9a5ae8","size":236224,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge.deb"},{"package":"aziot-identity-service","version":"1.2.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":17916,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.18)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)"],"sha256":"d857ac4eef5166fc531266c2e25d8c0f7b170819bb458f6853d63ede5cb22dc9","size":3805296,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.2.5-1_amd64.deb"},{"package":"msodbcsql17","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"f5562b6bc8f682f0f341d13700ae0d448276847c5de097fbb9d4c74943f1076f","size":743398,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.1.1-1_amd64.deb"},{"package":"moby-compose","version":"2.10.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f5f3a4a9f75d0ef0a8a1844fa3d63109e33a2989e1ae7599b5e6edb8fd8d91d8","size":6498184,"filename":"pool/main/m/moby-compose/moby-compose_2.10.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-compose","version":"2.1.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":25428,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"950ef8246e468ec4910f7dce964cdd19c350a754aa5317eda07bda99fa39e5f5","size":6293952,"filename":"pool/main/m/moby-compose/moby-compose_2.1.1+azure-2_amd64.deb"},{"package":"azcmagent","version":"1.13.21320.014","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"5a6e6160af4077a337699916ebf1d45cf37025650f33dd910f0459d24af2acfa","size":49774358,"filename":"pool/main/a/azcmagent/azcmagent_1.13.21320.014_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18524,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.0)"],"sha256":"53f1e28fcd0f39d4b3aec9d7cd494e9003cdb6577017e4c45b7a837320a5adcc","size":6073980,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.0-x64.deb"},{"package":"moby-containerd","version":"1.5.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":124211,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"dac49f1dfa10cc76295d563ac4fdb6790c561a8952832cd9a4778a8f2953e583","size":27576204,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.9+azure-3_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.7)","odbcinst1debian2 (= 2.3.7)","libltdl3-dev"],"sha256":"dc575321dac251eaac96ebfa024cbb2605cec279a4baae176529be97ae61fe4e","size":37052,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.7_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.4.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323717,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"23df3c1a4b3bd9218632b828765cdecc49e2143f4969496df164dad9521c060f","size":191756484,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.17","homepage":"https://github.com/dotnet/core","sha256":"a417f24d032b7dc9111a61d71df2dd1232cb5c78b6e82380a515534aafa20181","size":3429892,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.17-x64.deb"},{"package":"powershell-lts","version":"7.2.13-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168858,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"75a1204f0853c30057405dca9f725fb28d2a6114c217b501c3a541d1eaf5ed92","size":68396144,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.13-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.10 Microsoft.NETCore.App 3.1.10","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.10)","dotnet-runtime-deps-3.1 (>= 3.1.10)"],"sha256":"8998f609a34cef36b14e6c4aa6d85e25f99f70c88ef78f2586f45fda3c564c2e","size":21832770,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.10-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a86f12817d94c2ec721af3537e3ef92a4371d81bf96232dbd99543b1f0648988","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.2-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324571,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6d5a05b672e69cf7be78aead401c16068734af4d9002498ab6514bffe40490f7","size":164951794,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"ad64fd258860d079afd1c1784867be30625a31cbe09438a1102791ca085fea79","size":1306464,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.3.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":404208,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.400","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"4e1bc6ef9e5e0ec0a04ddee9c971b97087e6a9a0321ced9b4a872f2bcaac5270","size":108340086,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.400-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.9-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4510,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"1f02fb4b8e31154f9f44850af306a922994f18c8a5365f878da27bcbb8ddc98f","size":473350,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.9-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.120","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"2b0127f7334f7b4d29f4fd582d7a376cd3df021652eb5a8c2791cb60b45c66ca","size":78857458,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.120-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.32)"],"sha256":"b30812c75afd7ecf71f1c7369a474d066e00a208b4f6ed41f09c8722e82ec446","size":5772914,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50205,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"cdb161b6e83ce7d0369120d876b1fbe92034944681d862ded2292bb971bfc1ac","size":9779402,"filename":"pool/main/m/moby-cli/moby-cli_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-buildx","version":"0.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66611,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"7237fe48a538cd9f08f5482c5f3e1a3afc0c1ee6dd302bea3f3b06e7c9ab5fdc","size":23640920,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"powershell","version":"7.3.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172243,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bc7806942a6f28060686621bd922df555e61e11b00d5205896baba251ffa5b1f","size":69177584,"filename":"pool/main/p/powershell/powershell_7.3.7-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-3","architecture":"amd64","section":"java","priority":"optional","installed_size":318628,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"03dea1e256a822651b96db15d5ccaa92d74f70e118d670dba0f3249a156cb92e","size":167149714,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-3_amd64.deb"},{"package":"dotnet-host","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.20","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6b76d623e1e8a5867b635c656867f9b6df17f8b5dfa1c37f66265cd5d27f526c","size":36544,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.20-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175210,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"2dcf56dedacb98bc1f661a8c35fd818c14b348ab5ea6f2d984f3d480806e44b3","size":42839214,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.104-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.101","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.1)","dotnet-apphost-pack-6.0 (>= 6.0.1)","dotnet-runtime-6.0 (>= 6.0.1)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"12cef00f2632158eb8abb3134a76f3f03b644099c98f1e2ad947a89991a48582","size":78065748,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.101-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.9","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b71bb09108f7f90c47f7aa12647eb4b294adc990880eb2d87e7c7451af205b76","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.9-x64.deb"},{"package":"aztfy","version":"0.7.0","architecture":"amd64","section":"default","priority":"extra","installed_size":40620,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"23c48caeff05fb75c9486bf0685620a773ec46ec9d6263ee28670f19bd09571e","size":8353910,"filename":"pool/main/a/aztfy/aztfy-0.7.0-1-amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70836,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.8","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.8)","dotnet-hostfxr-7.0 (>= 7.0.8)"],"sha256":"ce1576434204df98a773ce62ea757b06997a110fea7d50720c6b39a5c0476337","size":23202254,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.8-x64.deb"},{"package":"blobfuse","version":"1.4.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":34742,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b4312aa8d8765031712e012b8ce36e87b66cb1295e276801fd69c47c85c2f877","size":10094342,"filename":"pool/main/b/blobfuse/blobfuse-1.4.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.6","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.6)","dotnet-runtime-deps-6.0 (>= 6.0.6)"],"sha256":"568ac6b27881ced8198b39bdf885bc864d07fe5d629356ca135cee3d4570f983","size":22760148,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.6-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"21aeb934942572b999ebe59d74ad66f42ed592ae2e81018913968c84a13cd557","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.12-x64.deb"},{"package":"moby-buildx","version":"0.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68426,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"20c7e33d3598ae3dcd0cd0bc127e554fefd1f1fd792bde4b0b29b214a1135017","size":25559006,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.2~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"a810af35585da4c42b563a185c8865f73aa517965d9dbb987a33c94c15fd6a1d","size":1648772,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.2_public_preview_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.27 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.27)","libc6"],"sha256":"701e89dbf39e921a5118d3fc3fe168c913bfc509006ee81db507dc5765f0dbb1","size":120786,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.27-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"1689060a6209de074a7ba1ca61658d7e7fecdd4ecd8afe241a1085ad1d2fb56e","size":3510004,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189613,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.407","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.13)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.13)","aspnetcore-runtime-3.1 (>= 3.1.13)"],"sha256":"0901442238c2d98efa877e9e707b593b2b38fc553ff2aa0d6f0ac8fd6450029f","size":47898062,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.407-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313389,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.110","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"675b0ac1cde55eaa4e5b917c32c32678076614f15a28d7854dcdc2f52a8ce652","size":78476464,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.110-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5348-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"da99f73d57adcfc0ff5cfa713f52f6dbe3d6198f6a996e481ddd1da183f77221","size":157183124,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5348-1.deb"},{"package":"powershell","version":"7.3.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196907,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a99e9fe370b0d9c05c736fa81521d32375ddb418ab75c76d9d0a14b4ce3d3df2","size":71728570,"filename":"pool/main/p/powershell/powershell_7.3.0-1.deb_amd64.deb"},{"package":"mystikos","version":"0.7.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"370fa35bb30e9919d98c900077cda8a212457ff740888d990e92793e1a2697f4","size":4280430,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.7.0-x86_64.deb"},{"package":"azureauth","version":"0.8.4-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":75617,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"79bd0a12a3bad516c7511db2f08232f7313501ace0785f85ce2ac6b385d2244e","size":24635978,"filename":"pool/main/a/azureauth/azureauth_0.8.4-1_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"d038485c6f83ac8259778162feda60f6d9a3347b5292320db645daccdd375731","size":20686374,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u3_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.8.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":9056,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"1cba16e3b307177cbe15bd3fd8a2a87ab8d638846988202be8a17981b5e900c9","size":2747798,"filename":"pool/main/s/scx/scx-1.6.8-1.universal.x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2723,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"9d775e854e8f618f437e1c5124ef753a7687852eab28430f7f668e27ad87245c","size":681884,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.21)","libc6"],"sha256":"310e219c7383a2a6b98e541ea0458296c6eb4fcbfb80d9d9ac9d5a1f27d0c437","size":142420,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.21-1_amd64.deb"},{"package":"mssql-zulu-jre-11","version":"11.43.56-1","architecture":"amd64","section":"java","priority":"optional","installed_size":116708,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"dbc40163338219bedb88ada68302d9b89f0896251ef5e8f853a72abe86a1a4e6","size":40354792,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre-11_11.43.56-1_amd64.deb"},{"package":"moby-compose","version":"2.18.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"69a1f6ffb194e386d3282c0d40847cdbc4a482a644c5289aae1f55f3d6d81ca1","size":10877658,"filename":"pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.118","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"8a7c3ffef5add57f593f7d903c514c118c45802f4590aaf2a39f7caf082e2eb8","size":44333922,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.118-x64.deb"},{"package":"sysmonforlinux","version":"1.0.0","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1)"],"sha256":"aaa94351e6626aa059e19c950c98bb078981268f0f77224eed46ef0d7b0773ea","size":225748,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.0-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13091,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.0)"],"sha256":"722f7d8e829269206ad71047ae84a13a9061a5d53f3e22fdfdc447eec19016d5","size":1526164,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.0-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.10","homepage":"https://github.com/dotnet/core","sha256":"f64503f74d2f6318966bfba4d124cf7ca087d3dafd56de5e9d72a5b575ce93c9","size":42400,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.10-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3233-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a161bdc4fc21f41312d5661573d4b6d055c3d8d9c3efdf0188b1240d9ba63f55","size":208751136,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3233-1.deb"},{"package":"libdeliveryoptimization","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1513,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"31e14621381b9f382fa30382bdcec3102f231b653fddc6426c995338eeb4c896","size":156484,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_0.6.0_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.12 3.1.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.12)","libc6"],"sha256":"caf03000692ae0e1e3255e34a6ba9d926642f65a618badbaab7e89b2c2b43dd7","size":121046,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.12-x64.deb"},{"package":"dotnet-host","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.12","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7e55da6f87aa87547fe6feb6bdae72ee2359d2db46ee35b86e58209fd951116","size":55976,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.12-x64.deb"},{"package":"azureauth","version":"0.8.2-4","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"6c67ce3cf97d82f6e014377d4a49426b10d0e725cadba7d868639ebec42d481a","size":24118762,"filename":"pool/main/a/azureauth/azureauth_0.8.2-4_amd64.deb"},{"package":"kevlar-repokey-dev","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-prod","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-prod","kevlar-repokey-test"],"sha256":"609c344c64cebccbca2a92d43b4284e5eafa3eb2135392e53f5b483e5179c7c7","size":2494,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-dev_1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3734-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3a0353ce615bd205a150e3bae61a3f8a851355f650d262cbbda6209a6ef35a95","size":209935436,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3734-1.deb"},{"package":"azcmagent","version":"0.11.20231.010","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"3cd72bd47a787bf6d4075d4ae541f48e93881e76a0851942fcf6ae51862ac61a","size":33039918,"filename":"pool/main/a/azcmagent/azcmagent_0.11.20231.010_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4aecf95e06f1d933e3c502fc7825af8dbad329c9fd5289bbdc8c3091a964f90c","size":2690,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.23-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"6a1ddab72b597a0d7224031b5e29b74c38fb11cc57108f6decb5de0d71ff53a1","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1642.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","lttng-tools","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"4ba4bbfd1787ff0c8e0f611b01778fea768efe59b9d280c7d0ed51e39e0b54ac","size":219899262,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1642.1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68312,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.0 Microsoft.NETCore.App 5.0.0","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.0)","dotnet-hostfxr-5.0 (>= 5.0.0)"],"sha256":"bee07a7b6e16a0a65cc6bfc6c26ecec403aebf22cc02379d8e9d88b00b9662d3","size":21522046,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.0-x64.deb"},{"package":"mdatp","version":"101.23082.0006","architecture":"amd64","section":"devel","priority":"optional","installed_size":411033,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"e80cb3c420998be4370f6da7724a335bf7a233fe9fe09fd85b15f10e6a9ed519","size":150359494,"filename":"pool/main/m/mdatp/mdatp_101.23082.0006_amd64.deb"},{"package":"servicefabricsdkcommon","version":"1.4.2","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric SDK Common","depends":["servicefabric (>= 9.0.1035.1)"],"sha256":"547885035e4b4811ed5bb2868869cb8eea6d64c5922a6779a0f4890bc423c61e","size":16460,"filename":"pool/main/s/servicefabricsdkcommon/servicefabric_sdkcommon_1.4.2.deb"},{"package":"open-enclave-hostverify","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"990276df2b07966cfe0808e7ad801a6d453774cec1fd5a2df4e4bc7452527911","size":854534,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8e8c6cc973ec8b33ebc1998ab7a3899edefd8292a91cf644a4da89117951f09f","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.19-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.421-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192852,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.421","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.27)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.27)","aspnetcore-runtime-3.1 (>= 3.1.27)"],"sha256":"7025fd412711f46edf16bacb0093011fb4c2ebcbefbce2a2e624a1ce63ed3c0b","size":49770728,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.421-x64.deb"},{"package":"procdump","version":"1.5-16239","architecture":"amd64","section":"devel","priority":"optional","installed_size":10616,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f38e3b29309d220c4c57729c3ec9ddad737d1d38c56387e971e55c6440b67f53","size":1625738,"filename":"pool/main/p/procdump/procdump_1.5-16239_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89518,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0accbbc7086ad733257ccf991a181302d7e7243b99aa663f856424ff56885461","size":82560948,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4895-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"730c784e1cb207ac9dd2055e7beb46d669395c64acdb1c0cf0587123189d51c8","size":158749964,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4895-1.deb"},{"package":"scx","source":"scx","version":"1.6.12.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"da87ad658af6fd2be3e23de235f8a037e04f62fca9facf4890dbe3a8c8f211ec","size":2588282,"filename":"pool/main/s/scx/scx-1.6.12-1.universal.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330672,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.301","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"bbebeb9d409cc8531efee42c19ef31cfacb4163b1e0c9c11ecf9f64def2e9d7a","size":84510338,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.301-x64.deb"},{"package":"dotnet-host","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"35fe3c54c617ca32833454137accc1b1b5200f0525eafffe5575af9eac22ac06","size":32904,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.11-x64.deb"},{"package":"azcmagent","version":"1.27.02238.691","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"0d3dba479960e05eb81a9adebab11eb5cf61f8e5c3b499db8e3b9d482a5c670b","size":53707946,"filename":"pool/main/a/azcmagent/azcmagent_1.27.02238.691_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"692c946fe2e041723b9ec97a77b6ce6c81c2a04cbaeb7c97625af9bef7c80235","size":2388,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020320001_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"56c6333632b1a4a16d5bd3dcdb6a7e9326a5fca99c06b466a18f46e2e9ea574c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.17.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52651,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"651e08385f1d09502042123169438defa3c6c0bdaffb6b9cb6a324e6e25230ba","size":10854258,"filename":"pool/main/m/moby-compose/moby-compose_2.17.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.0","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"7b71596ff75999d5eac2af059d597b48c370df332c2bebd4e813767ac68afac0","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.0-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.30 Microsoft.NETCore.App 3.1.30","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.30)","dotnet-runtime-deps-3.1 (>= 3.1.30)"],"sha256":"748af674ef3158330159ad766e13fe2e50df9f864053831ede774f22be9b5b8e","size":21656458,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.30-x64.deb"},{"package":"dotnet-host","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.8","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b1d34d47a7db8898824408b0cb2c83f2e17647a7ad2df8fd74df7bd7fbe8e646","size":32930,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.8-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18556,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.4)"],"sha256":"5d1c630d1847717c950f9c79d5bbf7d90de4e800b8999f679082e5dad9d8038b","size":6086556,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.4-x64.deb"},{"package":"servicefabric","version":"9.1.1388.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"b83b57255cb013301f0e4798e7e3dff853cb34f5b0ac61c29b4fdbdeed118a71","size":219279812,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1388.1.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21340,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.5)"],"sha256":"fb030c9ded8cf60148ce5fc0f70958a865fc3691eb64226213ec36079e77e319","size":7053294,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.5-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":66359,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ebf6160dbc40d51ea19d6b0a9ed941e809b3424f45452c644b761000e97c5319","size":22808628,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-2_amd64.deb"},{"package":"open-enclave","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":122315,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"77f2429e1d616d9403fc51ac662958f18a244c93ff4a1a24baeb965060bf4bb9","size":33343372,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.5_amd64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120082,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c36cef2558aad2d83c60a22f700db49fce9d4637564665dd45d2c45c198c988d","size":26953884,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.5+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"957c2861468f1e1391ad3de2f030653600a07b1bec8f1e5dd06e4af2b7a2848d","size":5745714,"filename":"pool/main/m/moby-runc/moby-runc_1.1.5+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.20","homepage":"https://github.com/dotnet/core","sha256":"9d5454c1cdc84def5bdbe93f3388c7183e81e53560114aaa220cf7a14bcb995b","size":2130310,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.20-x64.deb"},{"package":"dotnet-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":28828,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"4e02a0426e93fe860fe4a3f4496da2328fc7a827e66bdab3f84f0d1d859b2e8a","size":2086486,"filename":"pool/main/d/dotnet-targeting-pack-5.0/dotnet-targeting-pack-5.0.0-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.515-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228795,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.515","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3e21d2673d8ce6b4a4078091bc8c26051f2cfc6b9e49dd7758076d7facaef06c","size":89292452,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.515-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.1","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"e1d2d1f009afa3d6da5771c4888dc9a249944c1d331efded61486ffdde1b3d93","size":79756342,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.1_amd64.deb"},{"package":"powershell","version":"7.1.0-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174304,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"09ac03bdcd7c74a36807beca62eb4ccfca690be1dc3936ed08a7b8f14fe0cff9","size":68242798,"filename":"pool/main/p/powershell/powershell_7.1.0-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228016,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"446dac739f22121c02204f78199734069801f71568387b3435ad373987370ef5","size":59115640,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.408-x64.deb"},{"package":"powershell-lts","version":"7.2.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"d7f432866b4da70a8e0ed7e2221c165406f2e04f2c691e69960ccf85aa53ba93","size":69388194,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.5-1.deb_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.12+7-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317079,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"a54d8a5bd2786a883b9343909ca99dd7a7f22b26d24b52fbc5cb123d01a6ce96","size":193554082,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.12+7-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.7 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.7)","libc6"],"sha256":"3f8dfa80dbdac5db78ede515af8dd60d39f6492b96b122ce8a0ff0b118e5ecc9","size":140236,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.7-x64.deb"},{"package":"moby-engine","version":"20.10.15+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"dc6f35674c5ec41af4a03ce023e3b5b8e33f1322157fc78d33349820d1fc8b21","size":20926260,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.813-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240919,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.813","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.25)","aspnetcore-runtime-2.1 (>= 2.1.25)"],"sha256":"bff9e10d3dc9c4c99e5aa234fd2c6b187dec616be823d22ded8165f9680f43d5","size":91632412,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.813-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b6bfa17bec9d4b4ac9813d4eb615239966c224d7db7019550c07fd5bf22abc73","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.14-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.25 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.25)","libc6"],"sha256":"e5e623e0673d0cbc3fdd49dfc2e50babafb3b06a33b4365c3b3e9d97553d7ca2","size":120760,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.25-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189455,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.406","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"c17e3c941a3ea084d7eb47af90856eebe858de6a41ebd42e96fef21be3531573","size":47879916,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.406-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2628-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"48a9d825c07a0f1c138ba6a60050c6719925d44b23cd0e32ed34efda554ebd01","size":152285536,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2628-1.deb"},{"package":"moby-runc","version":"1.0.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15169,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"1ec023e3176b21673b5d38f1cac01ab03ad5d245aee354cdef593a1c82092f4e","size":5339204,"filename":"pool/main/m/moby-runc/moby-runc_1.0.3+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17438,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.5)"],"sha256":"e5762c7d694afeafbfa292c97db318306e26fb20a68252e07934511ab53d6d4e","size":5760232,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.5-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213479,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.102","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.2)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.2)"],"sha256":"9a82f517d20c03e91eef89b195dc1cc52bae32a1bd4cb01a3db6bfd51ff9bce7","size":55237992,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.102-x64.deb"},{"package":"open-enclave-hostverify","version":"0.19.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"6240db10ea11860356bb455e0895d9862b7678d19737af4de7554eb83d333bb6","size":1000112,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.2_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.14 3.1.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.14)","libc6"],"sha256":"b1c1bfd55d24df9257d564346e385acc3bbc562899413c3712552ed9efe70bf1","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.14-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.3)"],"sha256":"2252e98ccca6ed8790f8007dd8118f8999d6b4ca7be41ca3bf46fc0f8fd66f22","size":1518038,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.7)","libc6"],"sha256":"fb83c49522ac9748ae6befed061b663011abed5cb031e15d22215771d30b170c","size":143966,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.7-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124805,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"07580974546b886fe611343f06359f58b43e3e3e0fc650ea839554ef7f76a955","size":46699494,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.4-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21363,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.10)"],"sha256":"4669c57ac123ea1f3d772bec04fb2468527d68d6783809ba4b6e7a137e9ba94e","size":7062470,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.10-1_amd64.deb"},{"package":"dotnet-host","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.3","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c86af078631884cb8aecb055ad37570c49a2de66672df4f4ae9ff574eca4331c","size":57350,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.3-x64.deb"},{"package":"aziot-edge","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"0700e703b2373ed90c158783af14129f06c273d147401c5e2c8c752dc66c1f85","size":4204432,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.2-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.9-5","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python (>= 2.7) | python2 | python2.7","python (<< 3.0)","python3","apt-transport-https"],"sha256":"1f19bcbe826ba50f0796936df7e8caabc708a3fa075ce3558363a1f4672439fb","size":12514,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-5_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.5 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.5)","libc6"],"sha256":"c1d7056b143df44b476ede6a69671e4c09b352c6f984264f61a9518a01957a85","size":121024,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.5-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.6","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.6)","libc6"],"sha256":"7f249c085c34dd797a6aad06509714992d2f48a8452798623ead69194429454f","size":141988,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.6-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175188,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.105","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"03c9b1da04c9e0c2f8f362873bd56a357879a93192882d13ad1f89b449ddda83","size":43698950,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.105-x64.deb"},{"package":"libdeliveryoptimization","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1514,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"b70bfa739e450fb29a108e9790bcf98c1d001495175dcd52b4e8c39382394b96","size":156992,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.1.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e5b7ce564750f50a1aa6a99a4a5af8ec44e8aca36ed7babcc694282c47b7f7f2","size":36488,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.28-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.27","homepage":"https://github.com/dotnet/core","sha256":"9aff677e4984e24412ef2d41c7ee1bb5853d5a676724642090419f618ae32612","size":41966,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.27-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.4)","libc6"],"sha256":"868d65aea8e5f2dc487d5f3bc1f6611778a5193483f10f401bb3353dc82d9ce6","size":144018,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.4-x64.deb"},{"package":"mde-netfilter","version":"100.69.52","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"6e00f07a56be4097b9ff86ab3257017811d1b6f6bf121b69b53a8d6c06042c36","size":24430,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.52.amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"176e5dcfe41ae8e829b78799b22f2249c3f11aeffa831643c8e4c089e533366c","size":2124774,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.5-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"21cca571060049374d892dae2996cf33064b441631a5f0384aa917da4a518a7e","size":838580,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.13 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.13)","libc6"],"sha256":"3cc503e7a916ef558185f59e36ff57a855421e1684c291357d125cd26e9a9d32","size":121130,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.13-x64.deb"},{"package":"sysinternalsebpf","version":"1.2.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"b0c82c448966603c0e472e7227b51d8c02876cb2f62f5e6d501cb6dd50d02fb8","size":715290,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.2.0_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19862,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.9)"],"sha256":"14e18640740f852138cc60bd0f5c34d9d136f225b7a249e682ece80e9f2d83bb","size":6608408,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.9-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350037,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.103","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"a510a1e1ece4d989d4afe7c89015ba3771e42277139c0b84d919bf58659178f8","size":90608242,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.103-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.4 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.4)","libc6"],"sha256":"49d45fb8f2e68e35064744b9c21633a5aa87e7f451054936867b7716ecda0750","size":140852,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.21","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"586b47ef09438c1b2cd2b493d4947d861756b44d0183d0f4396c38f98df4b6a9","size":2794,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.13)","libc6"],"sha256":"532d2fa2dc9c1b2076010d25fcd7a89fa3a37a8134f8530c58894438aa751d8a","size":143994,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.13-1_amd64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"850b005a6cff5e198e0dbceb4a06793ad9777d97a1ba8aaff6647abc1d23787c","size":9652638,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"procdump","version":"2.1-17009","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"13f33965391c2baad2dcf171aa1ff79bd0f7c6e7c0a541bd18ea6d2ae73b488f","size":1649046,"filename":"pool/main/p/procdump/procdump_2.1-17009_amd64.deb"},{"package":"moby-containerd","version":"1.6.19+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"1f9e70df328d8cf6ddddc456035eaa23c6bdd22fff61846b67c1079b98afc4a2","size":31449582,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.19+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86242,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"170524326ebefe90fb0cf12222d1887bfa0920c219ac15971e211c01d8ed9780","size":20510486,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88c81dd2fb63b2f5b9161b03e3db1f8b1569d3e5e7f419a958dc4a4dbf05461f","size":58314262,"filename":"pool/main/p/powershell/powershell_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"az-dcap-client","version":"1.12.1","architecture":"amd64","section":"unknown","priority":"optional","installed_size":949,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"31cdd52119bf90c8e93bfb420a48b07d7153b1109d62004451d78e96a646cb85","size":161772,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.1_amd64.deb"},{"package":"moby-buildx","version":"0.10.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"442ee6a05061d6d597fe04da223f68a3a0ecbdd03cefc293e7d8dae6293a3a76","size":25954582,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"libmsquic","version":"2.1.2","architecture":"amd64","section":"default","priority":"extra","installed_size":16078,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"0df8998cc932b73a6ab74b9849a399e23d333772f47d1cd4d83a41e986202a20","size":4117900,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.2_amd64.deb"},{"package":"mde-netfilter","version":"100.69.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"1a6ca836ac97681f0fcec4088fa942783ec22b6e5d58be5a4adcc867301c8968","size":24434,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.55.amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"82d9ce5ab6130a8cf34ea3f04b636fa3b634ed9f1b518dcb4f34ef8a60e92b22","size":485622,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"83a0ae16d28a9c8822a7df6ad9d9b2f0e8a03a6b27f25487d3a341bfa4b0d1a9","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.28-ubuntu.14.04-x64.deb"},{"package":"azapi2azurerm","version":"1.8.0","architecture":"amd64","section":"default","priority":"optional","installed_size":70084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"f25bdb7d081fc4f4adcd6621926f8cddffc9a2248c30b46e6cd568469828eecc","size":9666182,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.8.0-1-amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022300001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"eda276458ea8423b699448a0009d7474ad47a0cc93886df47dd5d88780a4fcab","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022300001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189450,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"feea21e813e5f579221f266b87e6f55b3a49b35dd7dddcf1a54216d4f2a6921c","size":48035314,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.405-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4727-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0566fd72c633ba531b52f13b777579f056bffceb889bbf667a7b58278da3ed76","size":227697024,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4727-1.deb"},{"package":"moby-compose","version":"2.15.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43912,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"c0747669c5cf76ca6c8d31d73f726666d9a167d09bca61d25b96b858d5e5efc2","size":9668570,"filename":"pool/main/m/moby-compose/moby-compose_2.15.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71099,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.26 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.26)"],"sha256":"d58bbf6fa31169bc9e7965f75e6d1b403d13d2a0a564b2b9773b5d8e95aaa18f","size":21943940,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.26-x64.deb"},{"package":"azcmagent","version":"1.14.21351.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"929e5bbce54aaa08d2e9ea8026ec473827a0130b585fb9433250793e247c36c8","size":50495490,"filename":"pool/main/a/azcmagent/azcmagent_1.14.21351.009_amd64.deb"},{"package":"libdeliveryoptimization","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":1501,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["deliveryoptimization-agent","libboost-filesystem1.71.0","libc6 (>= 2.9)","libgcc-s1 (>= 3.0)","libstdc++6 (>= 9)"],"sha256":"af3ed5ab44fee987e86154358576b01369a18467c5361916d81b0704f90a3dd4","size":156634,"filename":"pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.0.0_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"42645637bdc5e5cbf71b83bc6f5ab80fbc0c8d1ff8b293060c106ca064b7f6d7","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.10-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.5.1","architecture":"amd64","section":"java","priority":"optional","installed_size":89256,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2438b186365c527f546c59e0e3a5c660c431739a12026ad89c2e0acad56ce443","size":82330362,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.5.1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3ec86621b0f80d91ba828774a3f0200046ee14b27046afc64f71d7719fc22e42","size":124473264,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4704-1.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367122,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.307","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"0dd6e99a413ea41be9ecb5d1815c41f19850d198911ef9d555f0fcd54e4cb7fe","size":96591194,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.307-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3442-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6f4924c5a51a13f2a01ca9f57ec4b8e42f2625f11b9959277b353d58fc031e57","size":209376948,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3442-1.deb"},{"package":"azcmagent","version":"1.25.02203.601","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"633d248a735db74f851d802144622a5cba9888a8c9741fdab3d72d0ace467940","size":53677954,"filename":"pool/main/a/azcmagent/azcmagent_1.25.02203.601_amd64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":124219,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a97ea99ba9cf7972a17ef85142fdcabe17b065b66e2c62b778bcf1a5c05942bf","size":27591168,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-1_amd64.deb"},{"package":"mdatp","version":"101.85.27","architecture":"amd64","section":"devel","priority":"optional","installed_size":294233,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"6b594c091b2e04b72c82656b7dfc54f908268b9ceacd0adaf96bac3dc7f171b6","size":117375540,"filename":"pool/main/m/mdatp/mdatp_101.85.27.amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b5c0552f571530933268426827b82de3c5a7e2c5d7a6cb1ddddada110a1a2cb7","size":166011704,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2936-1.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":69080,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"1416466bb4b4c601800a49b5c6964425787f8a7952a26d8ed3d480c563904e85","size":25957390,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u1_amd64.deb"},{"package":"az-dcap-client","version":"1.11.2","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"cb92041be615d8ade85036d7de605278bd7188bc5c22947f03fcb85685a5fb62","size":154040,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11.2_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.21 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.21)","libc6"],"sha256":"22ffa22a05d7aa611d2ecf6ee2165ac2bbcd2e6c2b99ca2a3a8f5283174ea5dd","size":143556,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.21-x64.deb"},{"package":"msodbcsql18","version":"18.3.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"526caf38a98d0f850975cb728a670702e5e60b31f75c87234f298b08f3b34990","size":756482,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4626-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6869230ff316720ef8a2729482a976f0289f492feb631080d9fc15226700bc38","size":227641572,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4626-1.deb"},{"package":"msopenjdk-17","version":"17.0.9-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324191,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"4d02c06a12e5808ad3a512bb10de1c3290ad7ebcb57fa0b08bd5d83e1aabc92c","size":164729206,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.9-1_amd64.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":13389,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"95eaff7c67998b27fc830d4526ff639c696649653b2c321fb3eaa80569bbd4c4","size":5767202,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.9)","libc6"],"sha256":"1d7e48c097b8a44fbaf341d6eeb8d176c809cd8950c5f1aecc7ce0bdfc1540a9","size":142246,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.9-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"35df0bf15be9fb9a66e520425a3d4ec04b16612f9cb57570a2403ad84eda6e89","size":2133946,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.11-x64.deb"},{"package":"azcmagent","version":"1.22.02077.406","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"28449eccc7003a5c00f74031562f05ed662b7d33840b587527a499dd0725c472","size":53412088,"filename":"pool/main/a/azcmagent/azcmagent_1.22.02077.406_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.422-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192924,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.422","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.28)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.28)","aspnetcore-runtime-3.1 (>= 3.1.28)"],"sha256":"4fd46756de5a2440abf56c14b75ed131c814d28bef262992bb0fed801fd0e621","size":49803220,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.422-x64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.7)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.7)","unixodbc (<< 2.3.7)"],"sha256":"80b52c6b1728146dd1f6b3adecb311c24fa7ca191bda569263c1733b3e6a9675","size":12024,"filename":"pool/main/u/unixodbc/odbcinst_2.3.7_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27359,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"1f36ec7f18be7b459632ced20ee68303e5a3ddcba882706a55c54c11082fc64e","size":2119378,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.2-x64.deb"},{"package":"open-enclave-hostverify","version":"0.18.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3129,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"9aea839f9ab284b17d957d72d1e74968267f6d883b9290a3c87e2eccc1c0b43b","size":854722,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.2_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.18.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3121,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"7dba065dc52b8eb0971a30d69c50dc293f75a6def60479e7d452a41c911dd0a7","size":853508,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.5_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.21 Microsoft.NETCore.App 2.1.21","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.21)","dotnet-hostfxr-2.1 (>= 2.1.21)"],"sha256":"8c825dcedb392ed3175a4b850d44f9e5f14ff6b80c3716c5265f66489c4b0bb5","size":20615080,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.21-x64.deb"},{"package":"procdump","version":"1.3-13160","architecture":"amd64","section":"devel","priority":"optional","installed_size":6912,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"31929586fc7fbffac526aea3586a20eb87fbd8cdcd113ab4681b691d86ea294b","size":1130220,"filename":"pool/main/p/procdump/procdump_1.3-13160_amd64.deb"},{"package":"libmsquic","version":"2.1.4","architecture":"amd64","section":"default","priority":"extra","installed_size":16079,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"2275d8debabc093181fb3cf6f2c07c9351365bc4a8941c69b985a099673b298c","size":4117996,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.4_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313277,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.109","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"004d1a204598e83b4a42c38cd1e42b273a1d9063f7d78f8ab8d0fc990eec01fd","size":78428644,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.109-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330653,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.302","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.7)","dotnet-apphost-pack-6.0 (>= 6.0.7)","dotnet-runtime-6.0 (>= 6.0.7)","aspnetcore-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"592c559cb5fc9dc5440cea502e388cc7b0aaa1beaccb03f9360e3378e0a851df","size":84868880,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.302-x64.deb"},{"package":"moby-compose","version":"2.10.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"4701d0142cf88e7c8d4ab4eb0a10dc047826be0c05c683960a3ca523ce01d518","size":6501704,"filename":"pool/main/m/moby-compose/moby-compose_2.10.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.4 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.4)","libc6"],"sha256":"c2f16c44b5de02851e803ff1d70c08eab56ffd3d466098bb37e5c6a9cc753911","size":120982,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17475,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.11)"],"sha256":"e9524164ec468565083307fa5cc0e2f6788016f36fc1aec2f4cef622f676ac08","size":5772760,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.11-x64.deb"},{"package":"dotnet-host","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.5","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"fb5bd7ba708921c0ca4aa2d1f93eb6cc3f32fae622e7cc08d33f13bdae4cb05c","size":52942,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.5-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.7","homepage":"https://github.com/dotnet/core","sha256":"e2e154b631f938328fdb2c262de25cc7c6769a3705a2b55d30f00fab3d715acb","size":3524566,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.7-x64.deb"},{"package":"powershell","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"11756a6265bdc1ebd14d678ab08a6999c03e24157b26b2c2e40640e44cb46acd","size":69690326,"filename":"pool/main/p/powershell/powershell_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql17","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"3353db998891244d924958830ed1c11662afd4541b41b2d4bb82add7b69147f1","size":744322,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.9.1.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"825da08fafaaf997b1fe218f01921fdac410e70b740fb8b025d2da238f0f51e6","size":3522960,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.19-x64.deb"},{"package":"procdump","version":"1.4.1-14851","architecture":"amd64","section":"devel","priority":"optional","installed_size":11111,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"a52dc999199e47240f20d68afa15a97609ddda007ee8f07d714eef1816960c8f","size":1655962,"filename":"pool/main/p/procdump/procdump_1.4.1-14851_amd64.deb"},{"package":"powershell-lts","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1d06b358202357801f6f90d65cea6d66b0033aabf1464b70862e62f3d296b393","size":68377710,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.16-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336555,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.401","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"c87f7c06058a2b355817e5671b8d94d18abbf70fba8f72824ae81ac4c5d83005","size":86551776,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.401-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19892,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.22)"],"sha256":"7f5c3705f1cc77f3c3193dca3832c6fdcb61f4fdb013c5b2ff3458cff7b490cf","size":6617570,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"046f75901d5530e3b309ebecb2e6f22138bcc93ca8bf03e24debd99f336616bc","size":3521770,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17499,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.24)"],"sha256":"a6b3a2d5fdd57d9d6c06da6eac82ffd1d8a533bc7cfe8f49fe1def4eb7773e41","size":5771272,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.24-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"180c6180ef50729b20d7057f5da16b052ce52825a2e34feb1a39581ad22dd40d","size":2132638,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.9","homepage":"https://github.com/dotnet/core","sha256":"a64f3530d4ea352189d2b3bd0bf7def827c9ff70fce7b7655df0db27038dcd0b","size":3524010,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.9-x64.deb"},{"package":"aadlogin","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"da831404adc54b986650b7a5d0ea77269a6ed0bace68e1e969622ae0fa31760c","size":411524,"filename":"pool/main/a/aadlogin/aadlogin_1.0.016050002_amd64.deb"},{"package":"hibernation-setup-tool","version":"1.0-8","architecture":"amd64","section":"utils","priority":"optional","installed_size":65,"maintainer":"Leandro Pereira ","description":"Azure Hibernation Agent","homepage":"https://github.com/microsoft/hibernation-setup-tool/","depends":["libc6 (>= 2.16)"],"suggests":["btrfs-progs","xfsprogs","grub2","udev","e2fsprogs","systemd"],"sha256":"2282e902a532536d75e032f859081891348a168a40a926502e53f67ae4587926","size":18548,"filename":"pool/main/h/hibernation-setup-tool/hibernation-setup-tool_1.0-8_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70804,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.4","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.4)","dotnet-hostfxr-7.0 (>= 7.0.4)"],"sha256":"b351edd6cc0a5ff6196cb3dcbc093b80cf9ade1d1c003e8ce5441debb7650fd0","size":23198918,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.4-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227302,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"06f173ff68233d5255696a39a7477298f54eecaeaa111142dc6dcc79077cd644","size":58426066,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.300-x64.deb"},{"package":"dotnet-host","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.27","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3d4b6997505f014ebb26d3aba0ccebd348de2c3bc4ec36593abf84e61a3fc0b9","size":36598,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.27-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.16 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.16)","libc6"],"sha256":"069a564507c39d531f4c4383944086c58d4d7b570320f847798b50c819d96ffb","size":120712,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.16-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"3722d70b879528db6c8c47037c5d0a2e0db429e4092032a613452fe2c84138cf","size":1306732,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.2.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.4)","libc6"],"sha256":"108cfdb263731e0868975ecc77c21c56b25ca9c10ae0e196e774beeed0504752","size":141998,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.4-x64.deb"},{"package":"azure-ai-vision-runtime-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2634,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"cf6dcd76811967d54319060586e829c571f12233571cbdb7d3b5a0aab3d796c5","size":658658,"filename":"pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.14","homepage":"https://github.com/dotnet/core","sha256":"eb25b730300d4bd9398698a6a0b036cdbc32242d0b24e4333d9f367442b9268a","size":42450,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.8 Microsoft.NETCore.App 5.0.8","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.8)","dotnet-hostfxr-5.0 (>= 5.0.8)"],"sha256":"d81bac8b4ab60b3050b04a0b3b492996ad157912b9e63766b246bafd1f986e4b","size":21796060,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.8-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.213-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.213","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.16)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.16)"],"sha256":"13e725e6ec66079135a45ac5c445ffc96655df68291e295ae37c52d4e70c12a9","size":57728570,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.213-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27358,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.1","homepage":"https://github.com/dotnet/core","sha256":"8510cbfa8935eff4b4f008d7cd03b93235dcf14a846a4bb9242eb38aa4025782","size":2124532,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.1-x64.deb"},{"package":"moby-compose","version":"2.18.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52728,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"195167c2fa9045437964e94690e1d59ebbff788b3e7adde5261980c02f799ae4","size":10878722,"filename":"pool/main/m/moby-compose/moby-compose_2.18.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.3)","dotnet-runtime-deps-6.0 (>= 6.0.3)"],"sha256":"6525eb9f979c86b5ff8bcc4b4f003915845eb1cffd3f42611e134b468489d755","size":22886032,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169366,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7baa7d3e12053844fc4b069302b00346d11e83b7bb59a25702c58b555c643705","size":66943402,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.5-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.4","homepage":"https://github.com/dotnet/core","sha256":"7d8324d65e4eefa0b979f0a92684391b1b554d31ca856895a4fce36b5a99d104","size":2125006,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.4-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"36cb535472ecafe46ca2004104756ef19386b677d54066a1f378b99b2de352a7","size":10216,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.015950001_amd64.deb"},{"package":"scx","source":"scx","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"bf2e8aedcd7b14cc7cf7030e8e1fbf341b8d50b083912d17a1ccfee9e1d1cd08","size":2588348,"filename":"pool/main/s/scx/scx-1.7.0-0.universal.x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.109","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"4b39fbb5aa288a2e676bc8103efddb6530271df6e4508c1589b98e9e8bcb06f0","size":43432762,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.109-x64.deb"},{"package":"moby-cli","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"ebb5874e6643b0d4fcfd33f0448db23fb7e0f85f63ed48bfd8ae666942b19c9d","size":9661496,"filename":"pool/main/m/moby-cli/moby-cli_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403080,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.401","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"65516f369d674b7cb6890bc5938d43689e154d468fadbfa8a0aa5e9739749694","size":108167894,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.401-1_amd64.deb"},{"package":"blobfuse","version":"1.4.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":34335,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"f9ec2fa0180f705094a90c3778ce77a3a7e3e01053134f84e40ba68601423734","size":9847136,"filename":"pool/main/b/blobfuse/blobfuse-1.4.3-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.15)","libc6"],"sha256":"9bd0c52c9ad70420d6df3cbecfe6163212c4f857b07a1d638f845b4a460d82ac","size":142382,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.15-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"cc2685bf04ed2521b1075a7f39183817da59cdcc894f56fb424b9f40863405c6","size":2122592,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"servicefabric","version":"9.1.1206.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"40de2a402e9a41d8e0e6b513fcf3a7d52c2aa0c7483600fb73b02a9c11e28b17","size":219772344,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1206.1.deb"},{"package":"aadsshlogin","version":"1.0.021030001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"a7a7b67e9a9c93d60f890520d4690266618f3c268ead39018680be43656d5526","size":422178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.021030001_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18531,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.3)"],"sha256":"ca38e724678e3e24216f612b028dc1ab788988d7d97f47543b0b64e247a3e143","size":6085600,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.3-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":193677,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"be418a526d5fe68f39aa1ab126c6262dbf870ae8501ba44ce8b020a2282c536b","size":70083566,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.10","homepage":"https://github.com/dotnet/core","sha256":"037f67656103db1e0003abeb8f793a88164ae03ec0b3e1b20c5d64af326e0a79","size":3399672,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.10-x64.deb"},{"package":"moby-buildx","version":"0.11.2-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"52da4bc1d26985870e1840e26ce312fdeae4681c26b5ad96171370764dce449b","size":34231732,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2-ubuntu20.04u2_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.16.1-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5740ee368bda3a087c695eb0439b892dbfc5e57ea4fa95df28138065569b18a5","size":193677516,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16.1-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020250002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"7626df3cbaf454d15cad5272495e8d3a6e11b67a9ff314b92bc720ed9b5b0e3b","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020250002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.203","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.6)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.6)"],"sha256":"662a0caec7c1e365f7f653fec119cd1462a5a3617db478fe23fc7eda791e9bb2","size":57518152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.203-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313394,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.111","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"ffb75e9c46aa5f8bb9eba3adbcb9f4e1e31ea98a47c6cf0deeb7268ff26662cd","size":78477024,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.111-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.13 5.0.13","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.13)","libc6"],"sha256":"23aa9b20787674470eccbac91c559d35c35bf2ecb7e076e6d53aa5a39f52e792","size":140398,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.13-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":408,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"d0c20931d42e3bfa3c62692ed459310272d6c44896ed3dee5a8ef2f17bf44937","size":162704,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.1.0_amd64.deb"},{"package":"azure-ai-vision-dev-common","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"4be2318c1cd29827197b2d9645b26bee8401f05aa7971fcc1b742d3daf136de6","size":114308,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b289ce53e31fa8638fc202c4696fb2c192f3f9dabdba3181d79d5b7cbafed030","size":55824,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.11-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fc9288295fef2cfd7ae9a90ad3c26fa3ff760ed6e606796fb9741c6e9566ca72","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.26-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.311-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.311","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"c1a665a32c50c5304923b06d3186e921829b342b6be153a772b420d9e628b9bd","size":85165330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.311-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68142,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.20 Microsoft.NETCore.App 2.1.20","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.20)","dotnet-hostfxr-2.1 (>= 2.1.20)"],"sha256":"8575c612e0632a90710fabe8d76ea218b1b9dc83f62f2720d4f531c6d2aa6031","size":20602712,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.20-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"d00554d3b7f1344606017276386b2036fe2651c068a346b69e0b04e1cd42851f","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.019900001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.102","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.2)","dotnet-runtime-7.0 (>= 7.0.2)","dotnet-targeting-pack-7.0 (>= 7.0.2)","aspnetcore-runtime-7.0 (>= 7.0.2)"],"sha256":"33b2df24c016de3a7bc5436cc3ede1be2eb990a7b66d5744060b140890174a45","size":90599622,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.102-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.7)"],"sha256":"0ed727999af4970f63aefcb531cfb0d7f082b6aad5062d168dae767a61191c08","size":1518774,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.7-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"428a0d8326d46a397bd195f63b5954618491c838381bb1d550de054d0136883f","size":1315186,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.18-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21330,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.0)"],"sha256":"aac90ab87ac39bf89adcd5218905610d388b9c9721c82a7156eb7b3750c3a726","size":7050452,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.0-x64.deb"},{"package":"powershell","version":"7.1.1-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174315,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cf2d594765c3d40800ac6f838e8159d6952e1abcca18976e2b13e0a819d9c401","size":68281910,"filename":"pool/main/p/powershell/powershell_7.1.1-1.ubuntu.20.04_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5148-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"045926eb2b3ad031e0c2643bd6b219d3f8d8964fa484a10fd4e0fc29059cf7b2","size":172042448,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5148-1.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"302756ad147ecf2774368decd127789888ec31948fa42cd2d8bb3ce9435a8ca6","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.19-ubuntu.14.04-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":168,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"95ced03d2790f46ce2a827f44ba643158ccc8ae144d973f8ccc14e16e73f79bf","size":57830,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.4.0_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350036,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.104","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.4)","dotnet-runtime-7.0 (>= 7.0.4)","dotnet-targeting-pack-7.0 (>= 7.0.4)","aspnetcore-runtime-7.0 (>= 7.0.4)"],"sha256":"1d57fcf96fa0c19c0bacc60a343952b9e21d1f3cadf38285b60160638bda93b6","size":90606898,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.104-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.28","homepage":"https://github.com/dotnet/core","sha256":"a70f9988c9e6f17bb5b7109b9901c44858c9a9bb3a65c85954a694a3c7f6a50e","size":41858,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.28-x64.deb"},{"package":"intune-portal","version":"1.2307.12","architecture":"amd64","section":"utils","priority":"optional","installed_size":23134,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libglib2.0-0 (>= 2.12.0)","libsystemd0","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","msalsdk-dbusclient (>= 1.0)","libgtk-3-0 (>= 3.21.4)","zlib1g (>= 1:1.2.0)","libgtk-3-0 (>= 3.9.10)","libsecret-1-0 (>= 0.7)","libatk1.0-0 (>= 1.12.4)","libstdc++6 (>= 9)","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libsoup2.4-1 (>= 2.4.0)","libssl1.1 (>= 1.1.0)","libc6 (>= 2.28)","libsqlite3-0 (>= 3.7.14)","libpango-1.0-0 (>= 1.14.0)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","libpam0g (>= 0.99.7.1)","gnome-keyring (>= 3.36)","libcurl4 (>= 7.16.2)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ab7513205ea60621a08748343804d0e0675dfa29a62cfacea6d47531756032fc","size":5520188,"filename":"pool/main/i/intune-portal/intune-portal_1.2307.12_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.401-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227608,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.401","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"8cbb8c82766e861928b8e349046738ed8cf411e0be03cbaf63a625236056350b","size":59260772,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.401-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"77908625884345bc3114dc74ad4a48e0761d5ebfff8fa320cc195d1d30b107c1","size":838530,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.17.7_amd64.deb"},{"package":"intune-portal","version":"1.2302.9","architecture":"amd64","section":"utils","priority":"optional","installed_size":18587,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libssl1.1 (>= 1.1.0)","libsoup2.4-1 (>= 2.4.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libx11-6","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.9.10)","libpam0g (>= 0.99.7.1)","libglib2.0-0 (>= 2.12.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libcurl4 (>= 7.16.2)","libuuid1 (>= 2.16)","libsystemd0","libatk1.0-0 (>= 1.12.4)","libgtk-3-0 (>= 3.21.4)","libpam-pwquality (>= 1.4.0-2)","gnome-keyring (>= 3.36)","libc6 (>= 2.28)","libjavascriptcoregtk-4.0-18","libc6 (>= 2.29)","msalsdk-dbusclient (>= 1.0)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"ae0cad3b35b4601fe82a86d1c27b6526b47f0cc207b2bec0d85294059526ba71","size":3341216,"filename":"pool/main/i/intune-portal/intune-portal_1.2302.9_amd64.deb"},{"package":"moby-cli","version":"19.03.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e6b58e72860d678fd4892e01d410f22fa6a8b45b7998edf7991773e6e2337e00","size":16382092,"filename":"pool/main/m/moby-cli/moby-cli_19.03.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":215512,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.100","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.0)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.0)"],"sha256":"fafe422d1610e009d4d68a433f651e43ef70ccbfa520d6163d50e92d407373a4","size":54972274,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.100-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18555,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.17)"],"sha256":"8ae0c155fdc56a6108e6ab13efcd2751bc1ac32a4c0a71cdd3bb9a200e5593ab","size":6086064,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.17-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.13","homepage":"https://github.com/dotnet/core","sha256":"11dc2d0bbc76ed8b6c61245a341f61d70c98c1dd8d46882aa9abde6f22d783c0","size":3403016,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.13-x64.deb"},{"package":"msopenjdk-11","version":"11.0.14.1+1-LTS-31205","architecture":"amd64","section":"java","priority":"extra","installed_size":317249,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9b31fe51c3b9edb59e8dc845eea04caca78d7bf1ccd9cac22b6004971663299f","size":193693992,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.14.1+1-LTS-31205_amd64.deb"},{"package":"blobfuse2","version":"2.1.1","architecture":"amd64","section":"default","priority":"optional","installed_size":30725,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"4b2d4ba747ca1d40625f3439382abc7245fda059f8d91df335f4028b099a00ad","size":15360896,"filename":"pool/main/b/blobfuse2/blobfuse2_2.1.1_amd64.deb"},{"package":"moby-cli","version":"20.10.10+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"83d59b6074be2ce5d275af61e335bda29dca2de3c1c066f1068319f0bdab3fe7","size":10587436,"filename":"pool/main/m/moby-cli/moby-cli_20.10.10+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16368,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)"],"sha256":"3378d5a53fb6786597571960a69f94b58c4b271737689072d055ccc9758df51e","size":5060332,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.9.0~beta.1-Linux.deb"},{"package":"mystikos","version":"0.9.3","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"bbe27f1fee36b2c1138ad976ebe6c496821b51bfa74503ae06d8a894f14a9e8c","size":4315728,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.3-x86_64.deb"},{"package":"dotnet-host","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.7","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"15f7336f94ddc3131fb6977e38fef042fa0fe95198c111ec6faa8b4bf5d0119f","size":57386,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.7-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213489,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.103","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"3c18b7203d6a38930a0b5c266e6dc0946d2e7457f8db313629c8ba6391d76930","size":55140132,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.103-x64.deb"},{"package":"dotnet-host","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d9220d3f42b7960997b23f3254fbada2b905ea1b91fc80d200580d697bde1914","size":57270,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.1-x64.deb"},{"package":"powershell","version":"7.1.7-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171640,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9cd3e76f87fabb0078270cf7cf7f8e8380d9b442a5e5696fd9054d3f2015a744","size":67148874,"filename":"pool/main/p/powershell/powershell_7.1.7-1.ubuntu.20.04_amd64.deb"},{"package":"msodbcsql17","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"ea72c644ed9a2e0ef21486ef89544bb2aefbd7e0e9daa7ee708a9d6719ee38fe","size":744242,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.11","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"362826c34eff451d35a8970e7a755d70407ec1692e120df11e6f3906ee62a36a","size":52424,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.11-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.12 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.12)","libc6"],"sha256":"aa2138928390fb13617720957d7b3afb4f6ae2af59794505470d6a38f61ee419","size":140278,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.12-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.415","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.21)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.21)","aspnetcore-runtime-3.1 (>= 3.1.21)"],"sha256":"255fd286f4d28ecc4b6f9c7dc1d734231876651f46cbca9292bfcdceb3c007c2","size":48251046,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.415-x64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"89d9166fec67c6f23e21fbf7e33e0d40f3fb1ec8f77078f79bc42ee2eecc66cd","size":510722,"filename":"pool/main/u/unixodbc/libodbc1_2.3.7_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"c9672f06b201be1df4ef1834a98a1447fdb57907d817d35e47ffd01b9754e8e9","size":1314366,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70837,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.7)","dotnet-hostfxr-7.0 (>= 7.0.7)"],"sha256":"ba5c8bb6c3509d24c9f5fb8ed8b8ac51165044be3bbb726e094c781f9cc04d49","size":23204566,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.7-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ad734ae671ee9f3423e6bfc8d96b2e8fb0ac309ccf68618bd9c426a00d41c3e0","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.16-x64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.3","architecture":"amd64","section":"default","priority":"extra","installed_size":27627,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"2329a1130035d20325ac4ef38c174da38b51866c3ebc48c5f4ba6988493392d3","size":13042900,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.3-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.614-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237153,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.614","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"b7f99c6c345423943d5758c0b1857f4698280f0e35761aa3b1a848671ee466b4","size":90818518,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.614-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.426-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193108,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.426","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.32)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.32)","aspnetcore-runtime-3.1 (>= 3.1.32)"],"sha256":"5d0ffe69e1f9b2196e012a9ec3e7dd55045f2cf648f008f48871505083eb707c","size":49845438,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.426-x64.deb"},{"package":"dotnet-host","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.21","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"10c0bb4a6e888b7b793ce8c2119cce80ec85c5dc2efcf36fd42be9c2ff123fe3","size":55830,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0690100dc9512fa877e61df0f6566c66635d634f8567bfa26edf9e9f317be0e1","size":2892,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.0-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"92e36a0001ef2bbe26cb348c1f28f73ec5d6d80f59f00466c043b63ee882814d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.27-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.415-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337395,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.415","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"271f45bad6cd63327162eccf54fd12bf0b13eac42100147cf03ab105d372241a","size":86815422,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.415-1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.6 5.0.6","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.6)","libc6"],"sha256":"8e0cbb8d34ee9f019b93bc67988342e4342f8bc37c2a311c4f1536fb5612bc5f","size":140272,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.6-x64.deb"},{"package":"osconfig","version":"1.0.1.20220125","architecture":"amd64","section":"devel","priority":"optional","installed_size":3664,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"7d0a0742647236cc220429f357d9a140fc0c4961297528849d5aeb7234aab878","size":1279254,"filename":"pool/main/o/osconfig/osconfig_1.0.1.20220125_focal_x86_64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11-1)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"752ba4a9819e49a44200ddba803dd9c3f9147c0ee70b1d8fceacaa2a9fcb7cbb","size":21274,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71074,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.5 Microsoft.NETCore.App 3.1.5","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.5)","dotnet-runtime-deps-3.1 (>= 3.1.5)"],"sha256":"bbf2694874198386228b90ed189770f0f256bc2149732af4f31df060c2f6f762","size":21773970,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.5-x64.deb"},{"package":"dotnet-host","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.2","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9bffe3ef7d2deeb6bc0b7c57a8d0e1c82e801df762dd182da78f60529eb2111f","size":52992,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.2-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2936-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"11e47eee5018c4a82404e43a507b7dda59d44c7f0a34b5b2f7658749b4d105f3","size":166004040,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2936-1.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.6.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"recommends":["dmidecode"],"sha256":"99db20012d0600ad184a115e2668d18bba828539c6e9084cda153baf6f43e317","size":522078,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.6.2.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"6090cadb2918f982d6421b7b1307de164ec003d06146541f6154de564306b5b0","size":1315928,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.11-x64.deb"},{"package":"aadsshlogin","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"165d818aae5aebda9e537556b050574e813b9f8d4043cd55183f95728220be33","size":419386,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017820002_amd64.deb"},{"package":"mdatp","version":"101.02.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"eb9b29c37dd2c540a6d9601ca63dcd146aca555bec77d6cafb54d2bb53c58f5c","size":16305960,"filename":"pool/main/m/mdatp/mdatp_101.02.48.amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2664e4aa37902a632023857b19e7913c0f1bd356923af66f7a7a7ba5690b05cf","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.15-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11745,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"35ee7c2da9cf72d513b84a8bda149edcb7342248e50042216209289cf4e7e5e2","size":1315266,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.13-x64.deb"},{"package":"moby-compose","version":"2.19.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"0559e3987e2fabfa1ae1d3a1586b33933876f2b849b3780d7a71f9a9d4fd5483","size":11862866,"filename":"pool/main/m/moby-compose/moby-compose_2.19.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.62.74","architecture":"amd64","section":"devel","priority":"optional","installed_size":210088,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"96d94685a98b33763201c3285713959757eb7255af58cae346fc71aedba2f80a","size":61608068,"filename":"pool/main/m/mdatp/mdatp_101.62.74.amd64.deb"},{"package":"moby-engine","version":"20.10.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":98022,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a52631688cf7998ef0677dd0931381e95606d0a0e194c2f861792281f6ce52d3","size":21194860,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-2_amd64.deb"},{"package":"moby-cli","version":"19.03.12+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83541,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"58450e88d4bc91611b8838a5a2fe36f2b5241e160060a85d26040f258d7b5319","size":16409404,"filename":"pool/main/m/moby-cli/moby-cli_19.03.12+azure-1_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":173637,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"41ece23dc2b75bbce34604f3aac521ad2edcea4a3cf20f2c3016f509d9bd240c","size":69264320,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.4-1.deb_amd64.deb"},{"package":"mdatp","version":"101.25.09","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d3add92c54fa8c01cbff8a8f25f3e9e99b28add48a8cf11d9d03413505088aea","size":44872318,"filename":"pool/main/m/mdatp/mdatp_101.25.09.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.424-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193096,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.424","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.30)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.30)","aspnetcore-runtime-3.1 (>= 3.1.30)"],"sha256":"c210f414ae6fac87305dc87332e42eb236ecf9aa87dc239737603ead0745fb97","size":49828584,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.424-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8"],"sha256":"6a8703b6c1146c24a62fc784a12ef0dc05517f6294dbecf7e88e5d512b8ae000","size":245508,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.6.1.deb"},{"package":"powershell","version":"7.3.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196880,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1447a6d90aa66616757290e8a4bde7df0ee14d9b77aba8d73021e849ad12f418","size":71750824,"filename":"pool/main/p/powershell/powershell_7.3.4-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.7","homepage":"https://github.com/dotnet/core","sha256":"484dca5074596febea3aeb4a00aec9e9c27c7cd408132f26ddb8fc3d3218e359","size":3399110,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.7-x64.deb"},{"package":"moby-compose","version":"2.20.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59070,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6b86549c464b157e4c9fc107296f8b591126a2ab07ff06517a9ece80f3d52523","size":11866170,"filename":"pool/main/m/moby-compose/moby-compose_2.20.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"microsoft-r-open-mkl-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":275115,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"c5dcc0d4756b0d6cac39ea38307c08726e518daa96b37efa597002e21888f81a","size":91215626,"filename":"pool/main/m/microsoft-r-open-mkl-3.5.2/microsoft-r-open-mkl-3.5.2.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21336,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.1)"],"sha256":"675601d3df8f116972c0786de4512a99f01c1f6cd8058cfb56f83ae7dee70ea8","size":7050794,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.1-x64.deb"},{"package":"servicefabric","version":"9.1.1457.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"70d31017bda3a7f1fcacbbed2db83f32c4f75be3d6e36679adf4ff0321a33740","size":219672394,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1457.1.deb"},{"package":"sysinternalsebpf","version":"1.0.2","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"856043680b2ccab0ccc12b284efa368d610e690a2165888dab349828dc21ea59","size":446972,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.2-1_amd64.deb"},{"package":"microsoft-r-open-sparklyr-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":267912,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["microsoft-r-open-mro-3.5.2"],"sha256":"10b1881851d3ecb42e4283da60edf6f6b9f238765f2ee8d22a0d2899af4c412a","size":70041338,"filename":"pool/main/m/microsoft-r-open-sparklyr-3.5.2/microsoft-r-open-sparklyr-3.5.2.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.0)","libc6"],"sha256":"aba67fc99134f951372118c3f843be58fb05c33d5ceff5aea080eff62b8917eb","size":144012,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.0-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331267,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.304","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.9)","dotnet-apphost-pack-6.0 (>= 6.0.9)","dotnet-runtime-6.0 (>= 6.0.9)","aspnetcore-targeting-pack-6.0 (>= 6.0.9)"],"sha256":"4110bad4f70bd90a71271910d42d25449164217d2e2078e4f9280c024e2b76b8","size":85036956,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.304-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.413","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"388e3816185346fb6298d5ee0b165ac9510b0ed47881c4e652060a4877fe9120","size":48204804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.413-x64.deb"},{"package":"dotnet-host","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.22","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8fd1104b360e1dd8e47e89918e40055a270ea8f69721822d56a903f642c6e575","size":32402,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.22-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a6831312aa0061731cc78db5b255b3631093e10211d7c280f2a0010f188a7eeb","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.20-x64.deb"},{"package":"osconfig","version":"0.4.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":8287,"maintainer":"osconfigsupport@microsoft.com","description":"Microsoft Azure Device OS Configuration Agent","depends":["liblttng-ust-dev (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"c80210777f54639283cdc6daffab34cbb020ffff9df15d771565f13c8bb2dba0","size":2009152,"filename":"pool/main/o/osconfig/osconfig_0.4.0_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.13 Microsoft.NETCore.App 5.0.13","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.13)","dotnet-hostfxr-5.0 (>= 5.0.13)"],"sha256":"9ad0e107c1ae2683cf643bf740a5fdebd342392e823f349d4ee8745748cf3816","size":22269634,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.13-x64.deb"},{"package":"moby-compose","version":"2.20.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59057,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6d3a316405dad90540fee81ff81841c0e24ab5de354ac4b3450e1232579046e5","size":11872246,"filename":"pool/main/m/moby-compose/moby-compose_2.20.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"80347c4205b28115fd646cd8d86a1fa3e09188dd3dc4c4d616097adfb0834940","size":20988132,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.616-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237173,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.616","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"986099cbca19649ad74900db804c7db7116581a3c676ff3f00c9b10c2b213bbe","size":90824460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.616-x64.deb"},{"package":"adutil","version":"1.0.014","architecture":"amd64","section":"default","priority":"extra","installed_size":13784,"maintainer":"","description":"no description given","homepage":"http://example.com/no-uri-given","depends":["realmd","krb5-user","software-properties-common","packagekit"],"vendor":"none","license":"microsoft_adutil_license","sha256":"8d4040fa87b6a2d79c22d7ad9094f9853c7af21646cb6d52b658e3eada0cc5b1","size":6701622,"filename":"pool/main/a/adutil/adutil_1.0.014_amd64.deb"},{"package":"azcmagent","version":"1.2.20314.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"e62f0680c77eb9daa2c7ffd61846f6a6cdacc900d5b678b07d0367826bddd6b8","size":18337190,"filename":"pool/main/a/azcmagent/azcmagent_1.2.20314.002_amd64.deb"},{"package":"dotnet-host","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.23","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ccc981cdde9dee6bd1664246a71a5ebb44d1520e26cd4741816daa6bb29bb4b5","size":32554,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.23-x64.deb"},{"package":"dotnet-host","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"665595e26dcde23629c8684e4aa7526237ea8d983000b46cd3d308ab6508f376","size":57242,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.5-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18560,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.1)"],"sha256":"94b5917f271e0c978ac095062cda3c349343cf22443ffe6c2cdc39909df10d53","size":6085584,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.24","homepage":"https://github.com/dotnet/core","sha256":"9cc4d53e2df092267fb8d53eb3bed3f1ee46d48a2adc7c82350b0310572bbc51","size":42318,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.24-x64.deb"},{"package":"deliveryoptimization-plugin-apt","version":"0.5.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":164,"maintainer":"docloss@microsoft.com","description":"Microsoft project that enables APT downloads to go through the Delivery Optimization Agent","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization","libc6 (>= 2.4)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)","libuuid1 (>= 2.16)"],"sha256":"67196e19834fbf9242a7b5d4e4e4f857fcdff2e1693e9c934a2a9b14c027cad3","size":57722,"filename":"pool/main/d/deliveryoptimization-plugin-apt/deliveryoptimization-plugin-apt_0.5.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.14)"],"sha256":"accb5c7d83b8029a841c5f644b3385059e4c0cc523dba69d0631c8649db65632","size":5771036,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.14-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.13","homepage":"https://github.com/dotnet/core","sha256":"1869df3ac2c3474befddf2c1c4be4ef5b86a25cca046613c7e5c85bcd5bb1984","size":42476,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.13-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"30f04454aaa1fd33c74b40c8e608dfb3810d89de0c21cd0587cefbdc6e7b6621","size":154905788,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5174-1.deb"},{"package":"dotnet-host","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4e62b76f0f8d8eae41ee1f21090bb9909f0024f2d3dc3fe928a312c2bec9fc69","size":57340,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.0-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.304-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366875,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.304","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.7)","dotnet-runtime-7.0 (>= 7.0.7)","dotnet-targeting-pack-7.0 (>= 7.0.7)","aspnetcore-runtime-7.0 (>= 7.0.7)"],"sha256":"3e683a05c3ae357896c893fb09a56418274c00498d0344af59e5d0b152ae82fd","size":96542450,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.304-x64.deb"},{"package":"mdatp","version":"101.60.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":207295,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9dc82ebe9bb10197b5286a7e34985ff308f583b719b93f8fdc4e69e2034c649b","size":60778376,"filename":"pool/main/m/mdatp/mdatp_101.60.05.amd64.deb"},{"package":"dotnet-host","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.18","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"38a501c55de8b0a2524f3af7f9187c14998e71f029b39c129165947c7ee29559","size":32522,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.18-x64.deb"},{"package":"msodbcsql17","version":"17.10.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"cc1b9698129f000c611f81b30e095a4cad804fba0af522b4d4e0035e51b82284","size":744524,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.10.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a43e2efe34f43412e02ef3deffe082cafc2e807e52f435184ab4a80f9dd325ac","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.29-x64.deb"},{"package":"powershell-lts","version":"7.0.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":154662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"015e5607bba35fa1a9f348dab3b550c1339763bd2fae07ec05c0c2155d045de2","size":58303714,"filename":"pool/main/p/powershell-lts/powershell-lts_7.0.6-1.ubuntu.20.04_amd64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11-1)","odbcinst1debian2 (= 2.3.11-1)","libltdl3-dev"],"sha256":"2d23185d950036681d26bebe982a533480de1415899b767dc9f84bab6f0f4cff","size":42366,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18561,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.2)"],"sha256":"975acfce69f012f1021b60764458ffb3fc8012bfc774f7833a55900b044b7608","size":6086552,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.2-x64.deb"},{"package":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.11)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.11-1)","libodbc1 (>= 2.3.11-1)"],"sha256":"7efce8fcc4bd0e64e4c0e86506af4c139e7cef469f4aa8162bdab9af2e1a575b","size":51534,"filename":"pool/main/u/unixodbc/unixodbc_2.3.11-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.26)"],"sha256":"32820d75d0adcceac8fd7a1384b13965f643f4b941c9388999f2e0cadf52fe16","size":5773088,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.26-x64.deb"},{"package":"moby-engine","version":"20.10.8+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e172c5a0a9c21068d5a177810c096d37945344259d7f13b50220595078414f25","size":21180504,"filename":"pool/main/m/moby-engine/moby-engine_20.10.8+azure-3_amd64.deb"},{"package":"moby-engine","version":"20.10.16+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"4f331b0590adc6b7ed0fdd3a952bf7a8e30cfe1a97ad13f0975219a024d0ed5c","size":20970224,"filename":"pool/main/m/moby-engine/moby-engine_20.10.16+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"800c8676b1b346df51b68e564e5c3b08a5f1b4adc66dcf304004ce8e7d747c72","size":69393916,"filename":"pool/main/p/powershell/powershell_7.2.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337170,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.408","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.16)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.16)","dotnet-apphost-pack-6.0 (>= 6.0.16)","dotnet-runtime-6.0 (>= 6.0.16)","aspnetcore-targeting-pack-6.0 (>= 6.0.16)"],"sha256":"edc5a25502bd63d67fcca871fee05dd2232b92a2d32318506942ab18c6b28b06","size":86692582,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.408-x64.deb"},{"package":"powershell","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"38ad697f50dad11ff4579069505cad9c458f70604607156c8018ac01bca6c2e7","size":69408482,"filename":"pool/main/p/powershell/powershell_7.2.3-1.deb_amd64.deb"},{"package":"dotnet-targeting-pack-3.1","version":"3.1.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":24673,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Ref 3.1.0","homepage":"https://github.com/dotnet/core","sha256":"7c353df836befb40aeeb1ce0b9193445f2a340e57e6f5ab5213d5d48fa867729","size":1987718,"filename":"pool/main/d/dotnet-targeting-pack-3.1/dotnet-targeting-pack-3.1.0-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.18 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.18)","libc6"],"sha256":"091fbf1a4809dba00e407ec2de57c5ed5142c64f89dac9dc6edda75286d6c2cc","size":143800,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.18-x64.deb"},{"package":"deviceupdate-agent","version":"1.0.0","architecture":"amd64","section":"admin","priority":"extra","installed_size":5348,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.63.0)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"534423643d3222ba25888ee6d5ec27428f4b8598ec8d412412e8d8b5e9f623a2","size":1945752,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.0_ubuntu2004_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"18c02cb01e0d95ee444ad6f83ae87f99db0240bad798dba74cb7c9308894d5fa","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.018440002_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.24)"],"sha256":"22807c1504a6147d029957b8bb7efb2430ed64dff6f9a09baeb6b8292c4a5e6c","size":6621650,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"powershell","version":"7.1.3-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174299,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ed800c0e58560d6a4f743e68083f8b46bef29670917c250157aa2c1170a6e502","size":68316948,"filename":"pool/main/p/powershell/powershell_7.1.3-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19846,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.4)"],"sha256":"87c010ec02884e7dbc8592468b23f521b3002a2a94615b4e3a1bdeac84f0f82d","size":6603012,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.4-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.11)"],"sha256":"69ad7c8416e46b4928fa0dd6287ca9ed1a0aea9841bb3789407f84dc2c35b114","size":6086112,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.11-x64.deb"},{"package":"blobfuse2","version":"2.0.1","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"a2b80fb5f373aaabbfe6be13185f01f2476ae8fc9fad6f63a1bf39e8d1995fbb","size":13151180,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.1-Ubuntu-20.04-x86-64.deb"},{"package":"libmsquic","version":"2.1.8","architecture":"amd64","section":"default","priority":"optional","installed_size":16108,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"9622432bdcedddff93aa4db72970e711b4539913430ff29659ba511e51ddeae0","size":4127324,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.8_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.12","homepage":"https://github.com/dotnet/core","sha256":"8e503b4527ce44bdbc7faa74049e45505cc2b6fe397661dad18fcbfb03df52ff","size":3401078,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.12-x64.deb"},{"package":"servicefabric","version":"9.0.1103.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","software-properties-common","curl"],"sha256":"98a528527d6a0a12297a7afc8a41f8a13bedc2483d1735e421087c2a5f893b40","size":219663890,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1103.1.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"8d6633d7d637add6a27594687c3bd216f20e83c9562dd580dae66f01d311e254","size":3531962,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68322,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.2 Microsoft.NETCore.App 5.0.2","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.2)","dotnet-hostfxr-5.0 (>= 5.0.2)"],"sha256":"db38c3122097400e46b34f26079e29cf5c8428d28d64b62b05970a10db844596","size":22091490,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.2-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"b4ee3e096d381244271ad46a50d577c8d846190eb89a0b71a695ab6529b24932","size":228285568,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4899-1.deb"},{"package":"moby-containerd","version":"1.3.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126903,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"92f29353da40defd3a7c370379c6f7e0a9ced4da0c600a271de9eecc7455247f","size":27658880,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.6+azure-1_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.11-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"be07f8c4f44811d550e068822d7089b9728dd48396137d6ff2ad0ccfe934453c","size":13346,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.11-1_amd64.deb"},{"package":"moby-runc","version":"1.1.8+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13394,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"6efe544dc8808d41f55eb25b1ff308dae9579ff90946f2d7dbd7af21a60f452f","size":5766794,"filename":"pool/main/m/moby-runc/moby-runc_1.1.8+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.16.01900.74","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"afa6965d84a6d1a16a0ee872f1d6dfea851b3a4380940b8967144f37c5283033","size":51768832,"filename":"pool/main/a/azcmagent/azcmagent_1.16.01900.74_amd64.deb"},{"package":"moby-engine","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86937,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e2c2fe4a09cf5f7ffa9d8b7907154fbd9b064d4a8dab439ed8844f2535325f8","size":20687466,"filename":"pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"az-dcap-client","version":"1.10","architecture":"amd64","section":"unknown","priority":"optional","installed_size":305,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"9a271799ce89fd47984139049ec3fd10ed9b77f14b0fe3211ebeaa47793c8af5","size":63908,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.10_amd64.deb"},{"package":"intune-portal","version":"1.2305.20","architecture":"amd64","section":"utils","priority":"optional","installed_size":22982,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libgtk-3-0 (>= 3.9.10)","libsystemd0","libgtk-3-0 (>= 3.21.4)","libssl1.1 (>= 1.1.0)","libglib2.0-0 (>= 2.12.0)","libatk1.0-0 (>= 1.12.4)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libglib2.0-0 (>= 2.35.8)","libuuid1 (>= 2.16)","libc6 (>= 2.28)","libwebkit2gtk-4.0-37 (>= 2.5.3)","msalsdk-dbusclient (>= 1.0)","libpango-1.0-0 (>= 1.14.0)","libsoup2.4-1 (>= 2.4.0)","libsecret-1-0 (>= 0.7)","libx11-6","zlib1g (>= 1:1.2.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libsqlite3-0 (>= 3.7.14)","libpam-pwquality (>= 1.4.0-2)","libc6 (>= 2.29)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"a3f9d7865374e7dd6a85ec4e73e0fae95fe28debd20ce333c08a9b68e2c05b43","size":5479172,"filename":"pool/main/i/intune-portal/intune-portal_1.2305.20_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2881-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"482a8e5c6fcd606b143216a601aa73f591d4b25cb99fb83b779f547effaeb5ef","size":190000560,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2881-1.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":10691,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"d60972a661d73058eb6d73319b7dcda94eb00da583a7497875028b129c7e2456","size":1062648,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.10.deb"},{"package":"dotnet-host","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.6","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1be8d37b8f7faa65fca577ffd1e11a3ce46a6696f3a43b6797df16804cdb5ab1","size":52498,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.6-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.30 Microsoft.NETCore.App 2.1.30","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.30)","dotnet-hostfxr-2.1 (>= 2.1.30)"],"sha256":"63e8907cd90cddae09f0ac69046cd2d19f0697497bec6f3ce83b6b5391b0374c","size":20502672,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.30-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.30","homepage":"https://github.com/dotnet/core","sha256":"069e6a26225a5e74628c552ab81cfd2e1a3851cb02a9a421dcf77212f7a2ef3b","size":42436,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.30-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"0bba8b9e9cb23965807d7dc23dc6244db2f7e87634bff1c63f002f35cc1f43fa","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.20-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11743,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"316dbcaeec56d030ba6a4231df05eacaa515ceb27c5ab9ce3a66a9975494811e","size":1313840,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.10-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.313-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.313","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"4d74db683c8cb69367f466c95fd83b71ffbfc1e7b6b3b92ee3fddd6297d170dd","size":85182878,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.313-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32c458736e9aea5fdf27cd90b588d12822af06509cd1d810c38c491c338842e4","size":2680,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.27-ubuntu.14.04-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336089,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.400","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"0c2897efed36675878f930783e75164ef8b537c90919f6308465045902a71c79","size":86384340,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.400-x64.deb"},{"package":"moby-buildx","version":"0.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68407,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"007d659dabff0cd6802afff642839960827c3f1eee107432c2f97f4b79fa4b79","size":25545586,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter-src","version":"100.69.62-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"499d5c0c2caf30b4be33753611c94edd449b87a2b40d4e200b53174c76aabb0d","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.62-2.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336570,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.405","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"04685c120f0b0db34950bbec26377fa60cdfde91537311cb6079eafa00eb6191","size":86616330,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.405-x64.deb"},{"package":"dotnet-host","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.2","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bbacafb7536e169aae3c7f15ef9785cfd81fef05408bd1fd38fe91d376329367","size":57478,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.2-x64.deb"},{"package":"aadsshlogin","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"28e496db72e754289da28be9e60c5e3f6ec9a424add33e82f306027baeaf3e2d","size":287178,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022600002_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.26 2.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.26)","libc6"],"sha256":"c33fbd6e073ad51f46f68df8283a793746dffb7949224b7f83b3fed3abea8496","size":143872,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.26-x64.deb"},{"package":"azure-ai-vision-runtime-core-media","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16360,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Media Runtime Package","depends":["azure-ai-vision-runtime-core"],"sha256":"b9365e91642d8582a2fcba79a13a51607634133644da0c97a0c425e662cd8168","size":5028016,"filename":"pool/main/a/azure-ai-vision-runtime-core-media/azure-ai-vision-runtime-core-media-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-host","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.14","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"bf710391664124748dacdcc24f360a55e63131e132b7f4d4e080c157b797ecad","size":52564,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.14-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b65bcfd2a273e8e3b55bbf6f0752097b8dece00d9706ee9711d6a1d4af82c404","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.31 Microsoft.NETCore.App 3.1.31","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.31)","dotnet-runtime-deps-3.1 (>= 3.1.31)"],"sha256":"655e60ffab7d47476c26feb82a4ec22da080f72796d504ce5bb325383a1b842c","size":21793662,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.31-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.3","homepage":"https://github.com/dotnet/core","sha256":"2723e90f7b3dd4840f4a5ecc62549f04ef3ff82f93fd177e5b8afa30d995748f","size":2568010,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.3-x64.deb"},{"package":"dotnet-host","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.7","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"dcda2fc1cc44a0bfc87ec4a12649724a984d4c61b4d37ed5d76d87baf6f82a7f","size":32932,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.7-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.115-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174529,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.115","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"e39a2e0f210472491b067fcd120cbf2d4a7fdb238f3752733524306013da7354","size":44109078,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.115-x64.deb"},{"package":"powershell","version":"7.3.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172707,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"67dc90155fea76997645ca7490db1d33d2afd7328df609a2d1c985be0229c13b","size":69306108,"filename":"pool/main/p/powershell/powershell_7.3.5-1.deb_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186673,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.300","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.4)","aspnetcore-targeting-pack-3.1 (>= 3.1.2)","dotnet-runtime-3.1 (>= 3.1.4)","aspnetcore-runtime-3.1 (>= 3.1.4)"],"sha256":"72460d8a199f2196ba5ff54cc1bd1ee8125088eadfd21ce35612dd84a2d8c9f2","size":46549742,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.300-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169450,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5565b2b4e1a9d140225923852ee535f324b5d52600414b1c7a3617999b1a0593","size":67105078,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-host","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3114be3bdae538f5bbe7ac72767371bfa084da21e35940b31416f2adce9145c4","size":52900,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.7","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"be3f9431764a17ed1f43cdeadd84ca2b5b1b800b2752c8ee35a66977ead3170d","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.7-x64.deb"},{"package":"azcmagent","version":"0.9.20168.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"d04f34fc297a26bb0df31f4f2d9f6ff4e3a00f5667ee69bfaeb368bb7324b160","size":34124838,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20168.001_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.809-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241164,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.809","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"6c3eb3b198e557174c7d5fc5777e2334ab3823c0579c4510650428c5ec02aa95","size":91744846,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.809-x64.deb"},{"package":"moby-compose","version":"2.19.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59023,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"78438210da0503e16dd86dd250a7368d8da1ab0e9b9e123cd1ede23a9c104f87","size":11868470,"filename":"pool/main/m/moby-compose/moby-compose_2.19.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"f04d30e58186de5c16d2014702163a1bbaf1d45c81a8c13c96529f1e757ba485","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":343757,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.100","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.0)","dotnet-runtime-7.0 (>= 7.0.0)","dotnet-targeting-pack-7.0 (>= 7.0.0)","aspnetcore-runtime-7.0 (>= 7.0.0)"],"sha256":"766366dadb45bd2c882f141f0f2a9b5ceaee12b86073dc8fb4e771667ee672a0","size":88442416,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.100-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.103-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312519,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.103","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.3)","dotnet-apphost-pack-6.0 (>= 6.0.3)","dotnet-runtime-6.0 (>= 6.0.3)","aspnetcore-targeting-pack-6.0 (>= 6.0.3)"],"sha256":"50af338321766b2340778c3ade3277056b990a585433087d2689f1e7f19e071b","size":77837574,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.103-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.18 Microsoft.NETCore.App 2.1.18","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.18)","dotnet-hostfxr-2.1 (>= 2.1.18)"],"sha256":"3a6b3782770d7d3fabe90fef9c8151001aa568b1bfb793c2303a25ba1829ac7e","size":20639348,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.18-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5390-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1eea1eb871da3df8131c404dcba26ccddccfc4d4234384a7fdb38ce336002881","size":157251308,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5390-1.deb"},{"package":"microsoft-r-open-mro-3.5.2","version":"3.5.2.777","architecture":"amd64","section":"devel","priority":"optional","installed_size":149532,"maintainer":"revobuil@microsoft.com","description":"Microsoft R Open","depends":["libxt6","libsm6","libpango1.0-0","libgomp1","curl","less","bash"],"sha256":"f28affd66e2c85d414464d381f3da6bd6356bd1f79f216ef519e5da0a4062d6b","size":73944196,"filename":"pool/main/m/microsoft-r-open-mro-3.5.2/microsoft-r-open-mro-3.5.2.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11-1)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"2bd241b5521b86d0c93df426f0af0f5c7bddec66b85df34871a1963897e845c6","size":99750,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11-1_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"7a7c760329044684e0614f9129037509e391f1457ca80c3b5a9df87d25d52400","size":2568218,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.1-x64.deb"},{"package":"powershell","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e764b26ba87196e78dec20665e166eee536d117deb91562a6e4ccf75cc1b6e8","size":69434548,"filename":"pool/main/p/powershell/powershell_7.2.4-1.deb_amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0)","selinux-utils","selinux-policy-default"],"sha256":"8f8cae83fe053cdebc4737e3ae887e4a8334d35764612885b4dd07f0f7041add","size":10086,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014460002_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126471,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c7ddefac0e44b0b275bac572727e239c96f9a84b894890e825fb29b858cbf2f","size":47428934,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.7-1.deb_amd64.deb"},{"package":"moby-compose","version":"2.3.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":26804,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f4da1b4c0d9082ecc1471e6d9243723483a066569edf36dfd28af303d7b07031","size":6625288,"filename":"pool/main/m/moby-compose/moby-compose_2.3.3+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019900001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"35a10bdc0d07802cffd112d95efef37dc653defda6a62d85b490c72fc867b5e1","size":417742,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019900001_amd64.deb"},{"package":"dotnet-host","version":"3.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f8fb5cd37c41b554e27f284d14904e2850017d5c8138335a961a3318e50cb1ab","size":32518,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.30-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"660b10f8ed6a4fdac26ce2d6a48f523b4f5a9c6f455250a8b4611593b822dc9e","size":1306240,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.1","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.1)","libc6"],"sha256":"982c3fca33c304b24d9cb78313aecb076a8a9182a17b8fbd506a3ce2cc1a2cce","size":142044,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.1-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.10","homepage":"https://github.com/dotnet/core","sha256":"bee459e34ba71863e88d8ea956848c9359d66b911cf091de58024cba0257e043","size":2568242,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.1","architecture":"amd64","section":"default","priority":"extra","installed_size":16545,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"7712196b2dae76094096548322b5c4fab3d6925e19953cb76fc231aa5147e058","size":7776822,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.1-ubuntu-20.04-x86-64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71237,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.32 Microsoft.NETCore.App 3.1.32","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.32)","dotnet-runtime-deps-3.1 (>= 3.1.32)"],"sha256":"8f8b6409628fc252fa9ced4e4cc0e1d64cbdb4e383f689a146e1e215e5bb6aa6","size":21871538,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.32-x64.deb"},{"package":"dotnet-host","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.4","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"7ce61ee5404f2ac55d834c1412267cc1eb7b6abab41572100c26b873e6a993ac","size":57210,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.4-x64.deb"},{"package":"mssql-zulu-jre-8","version":"8.48.0.50-1","architecture":"amd64","section":"java","priority":"optional","installed_size":109129,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"d4df30998acbc51019ee092032bb30d29a1ebc70398910e2a65c1b55e2e64fde","size":43720834,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.48.0.50-1_amd64.deb"},{"package":"mdatp","version":"101.39.98","architecture":"amd64","section":"devel","priority":"optional","installed_size":156517,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"66a205cdcfd0101d2ffb87dd2ab98a2c4d910e060d90f05739219ac8f2824dd8","size":45789778,"filename":"pool/main/m/mdatp/mdatp_101.39.98.amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.9","homepage":"https://github.com/dotnet/core","sha256":"2293ac02a16a580a50b49d421dcbe40d0b0c1cc7e42ed8da419bbea189ebfa5a","size":2568982,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.9-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.4","homepage":"https://github.com/dotnet/core","sha256":"451a6f449278670d33b5a24b68fb512968349936ec04b45109d2b35a172bcf05","size":2568714,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.4-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.13","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a20d656894bb7709356e3914b6aa1410b869fc97b1adc5a7a1af5b82cfd4eba1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.13-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.6-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324300,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"367323e32388113e6f9603cb65de9c117f07aa929df044670524b0df9db2e2fd","size":192107296,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.6-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337383,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.414","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"e7a6f337270074619018295570ecc0d719a77b2882927da9f5d2b5052f82f198","size":86810418,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.414-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5174-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6b0da9bb00c6da874913294ba6880d7fb8b6e2d4a80be638923e0c5adb3bcfc","size":154935580,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5174-1.deb"},{"package":"aziot-edge","version":"1.2.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"df6f7dc27e8ad8aa58995e30418f474147070d05642b6830738a3c66152d2427","size":5774464,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.10-1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"3.11.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"7a3a9f68428fcb6c8180e3699c0fad11282903678efdfa8f878a0d9ec5465436","size":263392,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-3.11.1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.14","homepage":"https://github.com/dotnet/core","sha256":"a986a11ed09e7b057600954e9c0daa588ef399cab2e27b8293f291129926989d","size":2123090,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.14-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68397,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.15 Microsoft.NETCore.App 5.0.15","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.15)","dotnet-hostfxr-5.0 (>= 5.0.15)"],"sha256":"0a5bebe1c956be75253c57d1b4061c4be04ed1200e8f98e5a502069fc2dfb2a6","size":21955700,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.15-x64.deb"},{"package":"sysmonforlinux","version":"1.0.2","architecture":"amd64","installed_size":3082,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.0.2)"],"sha256":"7dbc4dafaa9534539f584f321c360b827cdfca79130804e64d7b86e421881577","size":231844,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.0.2-1_amd64.deb"},{"package":"deviceupdate-agent","version":"0.8.1~public~preview","architecture":"amd64","section":"admin","priority":"extra","installed_size":4497,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent","libdeliveryoptimization","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"0b6f2e929b98ba75d4ab081ff55dee289c2e861be049a8fea5e1c3a8a9a29388","size":1648696,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_0.8.1_public_preview_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d317dd44e2ed1fcd365fef02a48beae0284729e16951504a2be9ab0212e747b5","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.10-x64.deb"},{"package":"blobfuse","version":"1.4.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":34746,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.5 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"70e465013b53f7363f3a95a4f4b6ce2918d453aedd71c0f9cea6691b8e2f2642","size":10093684,"filename":"pool/main/b/blobfuse/blobfuse-1.4.5-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.318-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331573,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.318","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.23)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.23)","dotnet-apphost-pack-6.0 (>= 6.0.23)","dotnet-runtime-6.0 (>= 6.0.23)","aspnetcore-targeting-pack-6.0 (>= 6.0.23)"],"sha256":"f02764143bd8a171bc1120364900df226c903e53dfd351c8e45a5d7b1bec2653","size":85272970,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.318-1_amd64.deb"},{"package":"moby-compose","version":"2.9.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25772,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"80d0a6b4ffbd8ded5acbdcdb6d833c3b5275bf0b2718fdf2740908c3078cdb30","size":6512336,"filename":"pool/main/m/moby-compose/moby-compose_2.9.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-containerd","version":"1.6.23+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125899,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"347e5bd7c6c052a22c54b7a2a8cd22301194075b2b7dfc374fd4188ed5feed78","size":31588386,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.23+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.11","homepage":"https://github.com/dotnet/core","sha256":"2acae1a747ca63f8b74f51b8b573e614e9bb7b4ef1697b26636f270a8b427a6f","size":3399076,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.11-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186658,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.302","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.6)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.6)","aspnetcore-runtime-3.1 (>= 3.1.6)"],"sha256":"d285189dbce539d9a85a771ed36966bf65f2447b8618d57d2932d0ee9297726a","size":46877526,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.302-x64.deb"},{"package":"defender-iot-micro-agent","source":"Microsoft","version":"3.0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo"],"sha256":"3ca69b2c419c00ca6df523e2ef38b856c74bc6f9613ee013d9d752b10fe0ba88","size":249808,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-3.0.1.deb"},{"package":"azcmagent","version":"0.8.20139.001","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"51b3a82dd0b1f004ab3cc1dc5ceeef7b2fdde327df30966cee3e4db9779a45fa","size":34176982,"filename":"pool/main/a/azcmagent/azcmagent_0.8.20139.001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.200","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"dc711bf42291ea51b2305419bc53758125cff21078cd8191df121bf862d40b9f","size":91798318,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.200-x64.deb"},{"package":"mystikos","version":"0.10.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"31dafd89871ba16015ff8e55d16bcb6a8fc636d0fefb6699339f6facb36e52c1","size":5305344,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.10.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.4)"],"sha256":"92aa3d15a9f802c45b2845a99397eee7e8a3311e6464e6f45753a002e9b06e16","size":1515026,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.4-x64.deb"},{"package":"msodbcsql18","version":"18.3.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ae8eea58236e46c3f4eae05823cf7f0531ac58f12d90bc24245830b847c052ee","size":755938,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.3.2.1-1_amd64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":107145,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"51815cf4be4171c2c244f9516db0ceb8cf9f1788f4e8b22bf4c20f8bce36008f","size":26317044,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u2_amd64.deb"},{"package":"aziot-edge","version":"1.4.8-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17752,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.2-1)","sed"],"sha256":"d793ab78971a15050db8b6e5959bfd995867c4ded3095e5460ac054bf0d2be55","size":4230816,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.8-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350085,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.110","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.10)","dotnet-runtime-7.0 (>= 7.0.10)","dotnet-targeting-pack-7.0 (>= 7.0.10)","aspnetcore-runtime-7.0 (>= 7.0.10)"],"sha256":"37f9bf12b98e288c114bc919c706a0ff8c72cbb4b8ced055322b53759d662f5b","size":90674390,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.110-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.118-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314323,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.118","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"c069d7068aa2c3352bedd73ee48d47deae79557bb67cd7a98f079534c067d736","size":78868818,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.118-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.24 Microsoft.NETCore.App 3.1.24","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.24)","dotnet-runtime-deps-3.1 (>= 3.1.24)"],"sha256":"f6c86e04d09923cc76aef4dddd416ae21e18783e6b9ad31ec366fe00841a05e6","size":21856944,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.24-x64.deb"},{"package":"moby-compose","version":"2.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43496,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"e5481dca839f63b8d79979974b28b106479d18a0a39aa7e492b29a5e020e67e1","size":9568480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.3971-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0dd2bc7155228abe77c3f1b9ef7f991b7198843ccaa63e2f6ce3051a09be7d0","size":134500288,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.3971-1.deb"},{"package":"azure-functions-core-tools","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"58cdf7f1c923f551bd8304f09314a0a196343f61a771eef04e3f09b62a203fe5","size":165959932,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2855-1.deb"},{"package":"msodbcsql17","version":"17.7.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"dfcb958f3625dca439bee14c2f5f91aba53bf137ab1f53c3945fd0952bf8dfd0","size":744700,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.7.2.1-1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.23 Microsoft.NETCore.App 2.1.23","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.23)","dotnet-hostfxr-2.1 (>= 2.1.23)"],"sha256":"7252fd61a461bf62f31e57ec62b37f76ac51086b1d543fb489d1c1d994a0bcfd","size":20607706,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.23-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.314-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331500,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.314","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"7b307e2bbcedb6145bc516bdc914a2523bbd776f85729396b81094c083b32dd7","size":85192950,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.314-x64.deb"},{"package":"azureauth","version":"0.8.1-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74124,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"61784632cbfe34e1c2d28320bf0aa3111f989e9a67a5dffdaf26182d578e4c33","size":24071902,"filename":"pool/main/a/azureauth/azureauth_0.8.1-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.1.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"9dc54caf038da57759b80a8ad46f1d783dc98f9039bfa307613d962d29c1c19f","size":594218,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.0-0_amd64.deb"},{"package":"azcmagent","version":"1.19.01980.190","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"19af5c09ca4704150f53a3d07db6afaeb8bb2aff34e64cafbe128406d502c20b","size":52454744,"filename":"pool/main/a/azcmagent/azcmagent_1.19.01980.190_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227348,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"d04ec77548f0bf426187edce1505275125a002ba3bf1224096c34fe7aa0ac372","size":58709818,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.301-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":168859,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a54899f099a74cb76cab9695d4a21a604007ff3f7486c05076cbec64b8b7f777","size":66703322,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.19 2.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.19)","libc6"],"sha256":"0319d7c4e2bb840f95473dcad32d7a237f644a825eac7f342c83e3755b6ea398","size":143604,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.19-x64.deb"},{"package":"moby-containerd","version":"1.5.11+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120364,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ad64c596e281147c50337ea5b7442f9bfba41d8d002d7309d6a0b1aa2ea91cc1","size":25980172,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-ubuntu20.04u2_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4704-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5191940c8b6f64839b27f278880f403af9d5ec7c3d75b82cb7a5ca7047f26d99","size":124467492,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4704-1.deb"},{"package":"moby-engine","version":"20.10.5+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117358,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a635857737c5e0393cbc06c4ee7051115bc828c37d7b22e3cf58f89722adbc1b","size":24773176,"filename":"pool/main/m/moby-engine/moby-engine_20.10.5+azure-1_amd64.deb"},{"package":"aadsshlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"9a30ce389879cf3a8430103b8924c296e1d843705ed0378598da2dd5ee22928a","size":415372,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.015950001_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"ee828c1bdfa48ecab95cb9625f11dbe6e3333d89c47edced6c6d85faff6fb2e6","size":157321128,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5441-1.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.810-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241163,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.810","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.22)","aspnetcore-runtime-2.1 (>= 2.1.22)"],"sha256":"85fa7f894ed08f386b9c18b04cb8de202cf22f68307435c784f004131c989aae","size":91737224,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.810-x64.deb"},{"package":"open-enclave","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":115291,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"85c66ff7801de3a21fae1788a1eebe1c3fcdb617127d5336c91b7ed1b08f4eaf","size":31560056,"filename":"pool/main/o/open-enclave/open-enclave_0.17.6_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-2","architecture":"amd64","section":"java","priority":"optional","installed_size":317895,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f7dd1d44a24e2a88a71847a864c6f39e32154f2a7703c30a1f2d1002566dd411","size":166897458,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.416-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337401,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.416","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"0c02d6340293058c7af92f3821702e58e7fd340276441b793d9ae44ffeb22f1c","size":86825034,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.416-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.13)"],"sha256":"3085c74701bfe21be9f9d57490721292c0ee466d142f3827e41d8759f386f217","size":6085472,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.13-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2d08ac3f8822a62d2ec5384bed68abfe55a52199c0960a43793a8f92c712ab84","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.5)","libc6"],"sha256":"946b46de39d9157ed341f4df85709543211f8baacfc94604a8a24e960250f87a","size":142074,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c203b2a5770aea2879e64d542de87dc6a705988f8aad5bae6a759f03eab6fe96","size":69689350,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.1-1.deb_amd64.deb"},{"package":"msodbcsql18","version":"18.1.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"ecdc984603e67d6563dcf800dd6bc4705e058a4306354998f1e0caff9753ab95","size":751978,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.2.1-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2553b0547714f3a938ad7ff192a7948d24d509bb53c65aa582ea7adcb57fb401","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.25-ubuntu.14.04-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.10.0~beta.1)"],"sha256":"c4271a9f38e1851357258aa8c8c892be7d2b3bd4c7fe2ceae3b134ac16c1257f","size":149320,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"apt-transport-https-sas","version":"0.9-6","architecture":"amd64","section":"admin","priority":"optional","installed_size":48,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"bdbf549b23f8446ae0e288db668d93670c9143765f03a7f8f4b8f087a576dc6d","size":12522,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.9-6_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc95+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19709,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"faf73d18c091fd1f2fc393439dafbe984f511e832331446150739c5e0da2e2b3","size":6550948,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc95+azure-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.13","homepage":"https://github.com/dotnet/core","sha256":"a28e554c180550b4d6daa763f55ef2121ea8fdd70d2da02dcc86ff7e20a70572","size":3517574,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.13-x64.deb"},{"package":"mdatp","version":"101.12.99","architecture":"amd64","section":"devel","priority":"optional","installed_size":152179,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"8751b14a8a2db98b28dcdc31cd01194ddd0910219d8204ec3471ebb7e02397fc","size":43935326,"filename":"pool/main/m/mdatp/mdatp_101.12.99.amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a8f75b0c7ee0cc1d5701ef4f2ab3c561a8d0cdc0998769794b122e6f9825fa49","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.10-1_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc94+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19694,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"2abba68b1f39a4cc5af9d7afcd8fcf48b2ef5d7cbb0b13f8c599b5eec018ec2b","size":6548584,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc94+azure-1_amd64.deb"},{"package":"azcmagent","version":"1.8.21189.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"f034191ed4aaf3ba0a8fccecf36b5813f5bf9406689e15ba9abd177e79d5dbf4","size":49532928,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21189.003_amd64.deb"},{"package":"dotnet-host","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.5","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2afa31bcf3bac0b866d3f215b71c6d56e885a9996b2c2729621222466986384d","size":55654,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.5-x64.deb"},{"package":"moby-compose","version":"2.14.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"ad091134300a157bfbc10ab1471e9e5a13b8670c925294a6d2077c4bb2ed9b08","size":9652610,"filename":"pool/main/m/moby-compose/moby-compose_2.14.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5030-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6486ba6279fa7e1402a9a57eb2fb5623513807378a83418e83c68d89ef14e291","size":156016092,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5030-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":748,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"b0e49d1b6dee1d25d2d897d8ca9dc15e3d5c1b8826f6a7e2703acd8585119397","size":113312,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.15.1~beta.1-Linux.deb"},{"package":"powershell","version":"7.1.4-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174285,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7435b5cdd8cbedeee396072b495b44067166674e7c40a9ee844a519c6223e482","size":68282782,"filename":"pool/main/p/powershell/powershell_7.1.4-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70841,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.12)","dotnet-hostfxr-7.0 (>= 7.0.12)"],"sha256":"73ed33d0f0b7f6bbbc0aa1ce299eb90eb8785186be7a8e480fc06ebd18127b3b","size":23211158,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13093,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.8)"],"sha256":"f14238d2ea7dc37d5d7c947e950fffa64e4183dcd1a88fcafdf1543cc0e21b43","size":1522110,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.611-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237134,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.611","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.18)","aspnetcore-runtime-2.1 (>= 2.1.18)"],"sha256":"3ff94801b2a6448875511986c1a7613f41387880b22a26b6433607debb4e8f0f","size":91354158,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.611-x64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.16)"],"sha256":"38af5c963fef967c1ff4e88a45df47e6617d05fa2814f668ce1a11350696968b","size":6085708,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.9","homepage":"https://github.com/dotnet/core","sha256":"356b86603caa1e26f2cb02e54eddd8af3a19a6cf92fc08a5f0641a3cc0332297","size":42680,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.9-x64.deb"},{"package":"azapi2azurerm","version":"0.6.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20424,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"107a2e822c62d94cd14b9b4402a135c634c1dbaac0e6e70b92803775ea27a671","size":6691356,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.6.0-1-amd64.deb"},{"package":"mdatp","version":"101.47.76","architecture":"amd64","section":"devel","priority":"optional","installed_size":186587,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"8014568ab9c8c946d280d1014b86df1165b69191239a7b79e0e0c7dace237d6d","size":54826224,"filename":"pool/main/m/mdatp/mdatp_101.47.76.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5441-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f8908ba61bfe2c80198f5e68282f02d7150a5ae4aa411444eb21ae4e8e1af71e","size":157337028,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5441-1.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.22 Microsoft.NETCore.App 2.1.22","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.22)","dotnet-hostfxr-2.1 (>= 2.1.22)"],"sha256":"a5d6c5497fa95d2b8d12eec33d3ed0fd43ce3ddb325ee59b273c090d8bbdfc3c","size":20601560,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.22-x64.deb"},{"package":"osconfig","version":"1.0.4.2022100104","architecture":"amd64","section":"devel","priority":"optional","installed_size":5432,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"8818ebf37cc67a05af3e1c569cbd145c26b0a44719d0c115dd62d2a4cc835023","size":1911656,"filename":"pool/main/o/osconfig/osconfig_1.0.4.2022100104_focal_x86_64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.10)","libc6"],"sha256":"2f96001b5b7063d29a430d368cb7dba492ebd67dab5406a11c9408db4581c1a6","size":142342,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.10-x64.deb"},{"package":"aztfy","version":"0.10.0","architecture":"amd64","section":"default","priority":"optional","installed_size":54596,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"45ea0fb07e1c2d5fc8cab233e2b530ffc05fc0865f1fd810fc49597b3ee0c12a","size":9404196,"filename":"pool/main/a/aztfy/aztfy-0.10.0-1-amd64.deb"},{"package":"azureauth","version":"0.8.2-2","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"ab456b47856de52483a9d035c7f96d0afb724d43edd6fcbf5fa53c7e3ff1587f","size":24111110,"filename":"pool/main/a/azureauth/azureauth_0.8.2-2_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18552,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.14)"],"sha256":"a183e3dd976b5283ee52acc4548cebfb852f0960f34f39a5a31ec2d6a0a0e0f0","size":6085076,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.14-x64.deb"},{"package":"edge-config-tool","version":"2.0.0","architecture":"amd64","maintainer":"Azure Percept ","description":"Microsoft Azure IoT Edge Configuration Tool","sha256":"b9e1aea2e07727fac26d45d8d5c92aafe4bd3ff63e13e875ebfaa9b14efaffc2","size":88470,"filename":"pool/main/e/edge-config-tool/edge-config-tool_2.0.0_amd64.deb"},{"package":"azcmagent","version":"1.7.21162.005","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"2a0e3cc4b517beabc2c1a8f7eb5b5bce2ed7961acc7aea7b148a12913daf4a33","size":18406364,"filename":"pool/main/a/azcmagent/azcmagent_1.7.21162.005_amd64.deb"},{"package":"aadsshlogin","version":"1.0.019630001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"68702812eed9cbd0bdb45d04e36f33b633a09452aa39b105d974093c9177f820","size":417398,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.019630001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.4-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18782,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"8db6803b985bfeeb997dbb716a9e1c6230425b0b71b59871d0ee103998e6ff01","size":4031196,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.4-1_amd64.deb"},{"package":"libmsquic","version":"2.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":16751,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"f436ce58f5d47869aefb256635b97e1b95872dba8ace6c8991928f4d8a88e782","size":4348660,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.0_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":3656,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"184a9fc7cd8c4247fc5f7ea44156d79d9b6441709d2aec4a83e4f7b17b8ef48b","size":1000134,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.3_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.21)"],"sha256":"40b63967efb23ab19fb1a863c2cfb47dded87ad0eef2b9afc5c37c6876672fad","size":5772728,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.21-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.19","homepage":"https://github.com/dotnet/core","sha256":"5a76b63c5cd8979e182dd7f9faea1ac1e2ce15845fabb1068e65ddb974f4918b","size":2122060,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.19-x64.deb"},{"package":"mdatp","version":"101.45.00","architecture":"amd64","section":"devel","priority":"optional","installed_size":161663,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"e6bf6ec6dee9242a8608578de115b0480159a317dc8c58950a476262014b51d2","size":46688308,"filename":"pool/main/m/mdatp/mdatp_101.45.00.amd64.deb"},{"package":"powershell","version":"7.1.6-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":171528,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6f70084d2a2cdc2dde760b18dd716a5941452248d2869fe9de6a65fedbfe8ca8","size":67057604,"filename":"pool/main/p/powershell/powershell_7.1.6-1.ubuntu.20.04_amd64.deb"},{"package":"microsoft-mlserver-config-rserve-9.3.0","version":"9.3.0.2606","architecture":"amd64","section":"devel","priority":"optional","installed_size":46,"maintainer":"revobuil@microsoft.com","description":"Microsoft Machine Learning Server","depends":["microsoft-mlserver-packages-r-9.3.0"],"sha256":"d05c783069979e3d057e4faf981f741aaa4ab430a11fe844aaa493ce29f4240e","size":5756,"filename":"pool/main/m/microsoft-mlserver-config-rserve-9.3.0/microsoft-mlserver-config-rserve-9.3.0.deb"},{"package":"msopenjdk-17","version":"17.0.5-1","architecture":"amd64","section":"java","priority":"extra","installed_size":324215,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"c58dbc06612034c0478881304b9b96ebee23fe0212dbf38e9023c5d7087d4a85","size":192096976,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.5-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"87ccdb4c2304e2c1f8e4cd0cf00d8df90be527c08a2c9e518a9ecda2eed8ae31","size":221294856,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4502-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7ab2543933ac5e546e391128a8629af650e0d9b380a646678a8032766871bd8e","size":125645188,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4785-1.deb"},{"package":"dotnet-host","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.0","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"5c50ea7d4464f1079333901e28fd06dfbfe87db511b0b912dab724571b3b7e52","size":55720,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.0-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":755,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"8b86e75809470fa5fd5c89327ed82d0fe2e0cae0b2e71c7bd2ff8e8b5f12d1a3","size":114218,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.301-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":186656,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.301","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.5)","aspnetcore-targeting-pack-3.1 (>= 3.1.3)","dotnet-runtime-3.1 (>= 3.1.5)","aspnetcore-runtime-3.1 (>= 3.1.5)"],"sha256":"4b3652426ead7c0b6c873818b1d7c83dc88095ea104324f787725eaa338b2b0f","size":46591862,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.301-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.214-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222417,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.214","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.17)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.17)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.17)"],"sha256":"563de21936ea0c86c5602a84c88840ea8eab358e7b9aa66248fe4525199fccbc","size":57622258,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.214-x64.deb"},{"package":"dotnet-host","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.11","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6548914c6872fa051b95a87c8f624313a8e51c72729eb3f27348b20140c3f02a","size":57370,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.11-1_amd64.deb"},{"package":"moby-engine","version":"20.10.9+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a93df7ad782a3041734431c3fc5028523b086d179fb13f5fd70e898bd01ab6c0","size":21178752,"filename":"pool/main/m/moby-engine/moby-engine_20.10.9+azure-1_amd64.deb"},{"package":"dotnet-host","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8808b8db255e6d57ca8335fb14328ff99f5da45443901f2801e15661afdb33be","size":32430,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.29-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.410","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.16)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.16)","aspnetcore-runtime-3.1 (>= 3.1.16)"],"sha256":"c3ef47c6707d7087e0208368b669d38069bbfde3d3b3cee484d4482c659cabb5","size":48098966,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.410-x64.deb"},{"package":"dotnet-host","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.32","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3547d638fbd423815cdfc08f98ef9d4a1c9e51ad854e379b68af8777218c4524","size":32436,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.32-x64.deb"},{"package":"moby-cli","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49832,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7e57c8b75f6832402709e33190c0ed61680a1c253bcfb826726959f7763efa7c","size":9660698,"filename":"pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"0c873e3bed6344099b81003745cae7a1707fbf7249b38922277499966e0f0496","size":362460,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.1.2.deb"},{"package":"powershell","version":"7.2.16-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168889,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"58e86f8f379bfacb417e617350b16696b134f50c4572ce7a56ab308cb9d243fe","size":68377064,"filename":"pool/main/p/powershell/powershell_7.2.16-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124622,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0b7eb4ebeb1d19f8d448597fe54b55f3e7496da06ecf2470fe18dd3c616d250e","size":46623124,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.6-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19874,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.12)"],"sha256":"80cfc243c528fabf035eb00208103895dc9550f8659bc62aec4538a48cec20e4","size":6611238,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.12-x64.deb"},{"package":"libmsquic","version":"2.1.7","architecture":"amd64","section":"default","priority":"optional","installed_size":16102,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"150478df2bfe05e26dc154d0144eb4c65c911c285a1bf76e01dea612bdef6586","size":4126202,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.7_amd64.deb"},{"package":"powershell-lts","version":"7.2.4-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187001,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"240c3e9e1e8b7d6eb3b54297236c5aea5ede0a28b4cb37701e26526ac1f3a037","size":69430114,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.4-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.14 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.14)","libc6"],"sha256":"cf2bad79c72e6b40346ed586ed6cc248f4af1308e57b54e14cc115dfb387b8b2","size":140364,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.14-x64.deb"},{"package":"msopenjdk-17","version":"17.0.2+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323435,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"2133d1b51f9fae2d178cbb97c94b9eb567655a36d8b8ef433afaa3dd5064c018","size":191825508,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.2+8-LTS-1_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21358,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.11)"],"sha256":"e6514c9bdc094e35047f7f3c8260ffc0b12261119937fa4831e0b344ddf5260e","size":7061290,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213465,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.101","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.1)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.1)"],"sha256":"76e7d2644d91fed7dcbdc4cf048d6778f5b95646e91b711af9ddd92fd0f8e36c","size":55355152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.101-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19903,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.23)"],"sha256":"d94536b5d048ce4956e9003bb999abaa5269b572cebb85b926da3a2f9732aed0","size":6620078,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.11-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"74f632b82584c30ff621280c7fc90143cc5afad265bfd6dc85f82ad6d204cbf9","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.11-1_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.9.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center 2012 Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"462eb22fe531e7c4aa4863c604bd3b8c521700aec4ccaaed4e462d40724cfa53","size":2588272,"filename":"pool/main/s/scx/scx-1.6.9-2.universal.x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"5c811033834fdff942210dfbf65d16eea2fe2f97d334d572cc02f3f2e43685b8","size":3520848,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.16-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31132,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.0","homepage":"https://github.com/dotnet/core","sha256":"4b3447d53557aa91e5522b47cc1e65f53fc34ca7e89ac6e6e2d3de8c9a26a248","size":2567740,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.0-x64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4753-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3e35f04acb96f6139ef831228aa7572b9ecd7504c5a01c0645b7ed6a415e3d9a","size":227724024,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4753-1.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.13","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"9a8231a5d1334d93857adcc7ac28d9313ee10a065f8ba4f03e2f8f6f90ff392d","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.13-x64.deb"},{"package":"moby-engine","version":"20.10.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117354,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6bc4d9ea1c16030c4525c43a6fc640ea8f0e1ad511e203430ec8eb7be0cb6985","size":24759692,"filename":"pool/main/m/moby-engine/moby-engine_20.10.6+azure-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68367,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.0)","dotnet-runtime-deps-6.0 (>= 6.0.0)"],"sha256":"8338aa43b86960efc2fa5018f6ee818ba75bdf0122578ac54511a626cc9c5a28","size":22849194,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.0-x64.deb"},{"package":"open-enclave","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":122136,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"b567f4e195da6b9ca229d0bfe29bd73cacb44707d4e082cefa1cedef06785fa5","size":33277940,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.0_amd64.deb"},{"package":"moby-containerd","version":"1.4.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138460,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"86fbf26537a44a35a2b14b035d115a68d633a7091edb598cc520c0126b208bae","size":30825808,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.3+azure-1_amd64.deb"},{"package":"mdatp","version":"101.23072.0021","architecture":"amd64","section":"devel","priority":"optional","installed_size":386508,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"45c0dd0dc355044c38629a7f903c994669a523a1ce93cddc66e603937c1dae70","size":133254902,"filename":"pool/main/m/mdatp/mdatp_101.23072.0021.amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.1","homepage":"https://github.com/dotnet/core","sha256":"641e499e02e79fda23cbc679116bb24abfd355dcf306e1ebcbe92ac401c2664d","size":3409646,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.1-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.6","homepage":"https://github.com/dotnet/core","sha256":"808c3c3b72039f378c84fdc9b2bd0f571517478368bd2b521ed2a236f99fe7d5","size":42496,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.6-x64.deb"},{"package":"blobfuse","version":"1.3.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":32123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"5593cf9114efe4a7032610e191523c8db16f446adbe523d483656e09cf791de5","size":9249408,"filename":"pool/main/b/blobfuse/blobfuse-1.3.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68381,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.2)","dotnet-runtime-deps-6.0 (>= 6.0.2)"],"sha256":"422ffd79ba0324eed88fe3634f69c1025d978f54738d98aeae7d84e364ce83c1","size":22859474,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.15","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c50a6d720eb317297a5915f1246f50239f4aaa98208436cbde53f5c7a9d29110","size":2796,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.15-x64.deb"},{"package":"iotedge","version":"1.1.15-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22418,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.15-1)","sed"],"sha256":"6caaacc8ed1cbf0bdd734527b9bf949efb242468a97d0827bbcf6ed2baf29114","size":5367528,"filename":"pool/main/i/iotedge/iotedge_1.1.15-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.6.9.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":4812,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"a5ba699e516821411f4ef12703b393e7242fca10df69109709dac5e8f7661a9f","size":1881492,"filename":"pool/main/o/omi/omi-1.6.9-1.ssl_110.ulinux.x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4865-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"cc459fd7233209669f3583d3babbe1c59e4cf2ab8757e55f956a21598b0e8986","size":126073148,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4865-1.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"08fefd2a57d32afe7284f2d7f0b8696d2fa97ab5196a8261a9c51653be5830a0","size":156082204,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5095-1.deb"},{"package":"powershell","version":"7.2.0-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188363,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9fcde25bbd7f537213e8ae34a9803c1ded59cfe1d41701816c424f9b33fd2bb3","size":69679588,"filename":"pool/main/p/powershell/powershell_7.2.0-1.deb_amd64.deb"},{"package":"sysinternalsebpf","version":"1.0.0","architecture":"amd64","installed_size":20553,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"be45d24415c437a7ad4f629cd228981daa3cfd1cf71f92849c38291cb1b191f6","size":402112,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.0.0-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":138440,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"c28c4584af15cb55dcaeb2d0977a6da4375ef4e9c652a7fa8d21fac52b08e462","size":30819268,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.6+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.816-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241023,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.816","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"3ee8c7520affdb83e690e8e1d1a6fca6651da7655f6edd3144c2b81c9c846ecc","size":91732988,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.816-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.28","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"1af932e9851bd3bc2ea9e6e750816ede6d2f1062afb6fbb8c194a35a7738b3b1","size":2688,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.28-x64.deb"},{"package":"moby-engine","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":98026,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"e2e90f83c1e733d3948630127dc9e4d8a7dc9824f8cf62cd9a9dd45f12a9e5cd","size":21176712,"filename":"pool/main/m/moby-engine/moby-engine_20.10.11+azure-3_amd64.deb"},{"package":"blobfuse","version":"1.3.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":31955,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"d309e4663e49150bd8af852c864b05492d15a9e3d6fbbba21a8bd296ce9d1d87","size":9222958,"filename":"pool/main/b/blobfuse/blobfuse-1.3.2-Linux.deb"},{"package":"azcmagent","version":"1.0.20259.009","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"22e4e22aa2fe9324d65634f103ec360509aee682aa283246416959147c2ba3bf","size":18201370,"filename":"pool/main/a/azcmagent/azcmagent_1.0.20259.009_amd64.deb"},{"package":"libmsquic","version":"2.1.1","architecture":"amd64","section":"default","priority":"extra","installed_size":22575,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"66b934f9eb658a8f430e675ada16d16edd6789f57347a56f7ac9ea72564ca8ce","size":6406602,"filename":"pool/main/libm/libmsquic/libmsquic_2.1.1_amd64.deb"},{"package":"aziot-edge","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"1314559971d904a3b642bd0541b489783e939c13f27f1f05b078a1c3b3dd8d83","size":4203924,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.3-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.3","homepage":"https://github.com/dotnet/core","sha256":"5247aa739c901dd9f78bf45b8f0d8c763aebcea109c9e83ce4b172c6d6c66a13","size":3398704,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.3-x64.deb"},{"package":"moby-compose","version":"2.2.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25452,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"5bb4f1ff748a6aa0b4478ed7c0391a035d1565b404a913645d9cb5dcdc8de5c3","size":6319144,"filename":"pool/main/m/moby-compose/moby-compose_2.2.2+azure-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":682,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"dff4c1804439d9c08d8dd31627040ea654765903eeb4295393585fd9e0e30b56","size":150108,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.19)","libc6"],"sha256":"cee694dccc54a8260d4971e39ff1da2b32ab2e15f77c21792625f0b287ba9f27","size":142356,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.19-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"faadd0e5e11d84f87587fe159edeed8a5de688108e786c2184f2993642286e50","size":2682,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.18-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.25","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"86580698443180f77b1f3e550c84af5ce5add1f836bbab794785b1c2102e0be5","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.25-x64.deb"},{"package":"az-dcap-client","version":"1.11","architecture":"amd64","section":"unknown","priority":"optional","installed_size":904,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8ececbf101e9312cf3c57b619f0a7045138972ee2da54cdc48258dcbbd9b7b23","size":152336,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.11_amd64.deb"},{"package":"moby-buildx","version":"0.10.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":68424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"4f18c8ea6d49049ba56dbb3ba02c57e78949c717d9fd8ef334fc1632ec96f114","size":25558318,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68158,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.24 Microsoft.NETCore.App 2.1.24","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.24)","dotnet-hostfxr-2.1 (>= 2.1.24)"],"sha256":"ff9b77a9ca019abd68854a564d5529b633c2e7254efa58b7754db1418985a695","size":20327858,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.24-x64.deb"},{"package":"moby-engine","version":"19.03.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1a0463b96c01047c079912a3fd23fc11294a3751549cc3318c198e187722599b","size":22479484,"filename":"pool/main/m/moby-engine/moby-engine_19.03.12+azure-2_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19830,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.1)"],"sha256":"30df06bcb1ac581ecfd07a2b64fe45d2252c7eae876549e166aa1530864fd438","size":6596852,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.1-x64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.13)"],"sha256":"7a8bac3d07539a56ad0cb775e996da6fdd0f6ba1bb21924d7853a1f28e433ec7","size":1514874,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.13-1_amd64.deb"},{"package":"mssql-tools","version":"17.7.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"7ec6c85e184cc37ab241d01b560d99761ef641df436b065a5e195b65e017438f","size":212146,"filename":"pool/main/m/mssql-tools/mssql-tools_17.7.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.0","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"acbe521b53360a4f803e8bfc50ef0644415da7f2f7c81feb83ff5f2eb679f457","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.0-x64.deb"},{"package":"aziot-identity-service","version":"1.4.6-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18919,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"f8ac43250490dd18b4f9ccdd72a7f1c10a295e9336d9ef98d39f0dd4d9542098","size":4128286,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.6-1_amd64.deb"},{"package":"mystikos","version":"0.9.1","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"53a143496602981ccd0202be14766901ea0fef422e6ad6ba6f3765ff08b1ab89","size":4443962,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.1-x86_64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.6","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d6a34968d174165c3ac0bb68607b2ab0bf248e574585443971811e15ad1229c7","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.6-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.4.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86504,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"8c79c372fc677a9acf2acdb8b216daeadc2ac10b118d5643ec2ce22eb8d28089","size":79758318,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.0_amd64.deb"},{"package":"open-enclave","version":"0.17.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":115341,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"57bf989e1cbc7c0f1c39016faf5902b416a38b0939c6c8b58e5d7b3f8f1a84a2","size":31579642,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.17.7_amd64.deb"},{"package":"open-enclave","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":113932,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"940bcf829445bea407b05b7dece0991f89f26b0045696798b9c509b2bb2054a9","size":31147748,"filename":"pool/main/o/open-enclave/open-enclave_0.17.5_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175201,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.108","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"7fadaca90a5586bcf86c5717c6476be0194d9926343f6373ebfd58f91ee52be2","size":43451478,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.108-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.16-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17502,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.16)"],"sha256":"1f956f7f3109b34b6fea001237ae0496400aaadcc2db9128f036d0d32ed3ae7c","size":5773784,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.16-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.205-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.205","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.8)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.8)"],"sha256":"ac5d3a001fa718abb9d1095c6b5d54740d9ed873f73f30d17476e6e11ce405db","size":57015322,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.205-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.12","homepage":"https://github.com/dotnet/core","sha256":"42ecb191e3214e712f0c326642bab72ea72128a447d22f038a55286df7d1dda3","size":42736,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.12-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"37bc0cdb694b55c1ea99e4c6b92f136e7cf603fcaddebec76d11e44add41146c","size":124508616,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4736-1.deb"},{"package":"moby-containerd","version":"1.3.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126911,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","libseccomp2 (>= 2.4.1)"],"recommends":["ca-certificates","moby-runc (>= 1.0.0~rc10)"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"490fcb1ec50690bbb88799133fd2cae5dba6d5cb60e2edbfb6a47153b6d7da56","size":27671252,"filename":"pool/main/m/moby-containerd/moby-containerd_1.3.7+azure-1_amd64.deb"},{"package":"moby-engine","version":"20.10.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117258,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"8568f934682972051715d41d9229b8472ad4e80fa15f2ccdc22fcf22010a44c8","size":24749920,"filename":"pool/main/m/moby-engine/moby-engine_20.10.3+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2796-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"cac57f3b16afc8e2659455245b67ded3cfee570654f4dcf56f406ac93d10998d","size":155251712,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2796-1.deb"},{"package":"dotnet-host","version":"6.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.1","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c3dd5069cafe3151cfe1cf170a646d3fe812a492224d423f2891d8e86913981e","size":55698,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.1-x64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":749,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"31a07d73e85448f222de5b7440ece1c5b4ef5b7f5d3ce7eada6a9aae0fafcbe1","size":113348,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.8.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.8 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.8)","libc6"],"sha256":"d11445de01b19806a245daf2e6708e413de8fc3a042b2432bfebf0ff04491684","size":140268,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.8-x64.deb"},{"package":"mde-netfilter-src","version":"1.0.0-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"7858cb2a6c43f44417e8d95bb9194bc98810460e516ebccdea5825ec71bab287","size":13560,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_1.0.0-2.amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.818-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":240998,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.818","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"3b29d87b6ee0491de22235bccfa4ab5b9ee14cdf758b8d96c3a2185783faf65b","size":91722984,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.818-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350115,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.113","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"223e3af61704a49c26518832cfe04260c23017fd06177dcda24d83495c39012e","size":90709030,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.113-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.18","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8ffa1b39d77d6a94bd176906fb800283f6234546933df852f72179bebb7701d4","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.18-x64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68171,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.26 Microsoft.NETCore.App 2.1.26","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.26)","dotnet-hostfxr-2.1 (>= 2.1.26)"],"sha256":"4e494c2f20e4199b60fc405faac8ea456c2a034fdd53974e1dae30e2038adcf6","size":20322466,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.26-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.310","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"1c58a5fed9617e4c08ca224ebdc1b54a04797be23b10055ebf17ca7221f666e0","size":85091654,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.310-x64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.8)","libc6"],"sha256":"45c3624776c280739550c606c83185497c31b21acc8f5150e71dfd5996f504a9","size":144354,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.8-x64.deb"},{"package":"dotnet-host","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.4","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"09858829de4b32532c7002124ffa9dc5ee892adf755863bba9738d444c5ddea1","size":32884,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.4-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19855,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.5)"],"sha256":"7c264f8735dbe110e039125f5bad99ecb950a199abe16d6cd2cb97b07b4975d2","size":6604008,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.5-x64.deb"},{"package":"moby-cli","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59401,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"be80e5722544fab52ca05e7c4152e240aa3f5d7f0673e56d63ea47facc0ec0cd","size":10215796,"filename":"pool/main/m/moby-cli/moby-cli_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.208-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":221997,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.208","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.11)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.11)"],"sha256":"992200db75615210f8de592bd681f381a30f47bd73a035efd9837aef6c8d615a","size":57283674,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.208-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174793,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"6196ba4ebcc16e66d20a6cf31d103898168edd2a32e11b8f79d149a95021bd23","size":68350160,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.2-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.11 3.1.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.11)","libc6"],"sha256":"e27faf05b11f71781749b07b0029c760fd61062adeca99112765d853e29e8395","size":121006,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.11-x64.deb"},{"package":"moby-engine","version":"20.10.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86247,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"645efdaea0e340dbd4739a4fa1ad8eb4558b497debef91569e6f2f75b5e115b8","size":20507890,"filename":"pool/main/m/moby-engine/moby-engine_20.10.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117234,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5782d03398d3820b1badffcbd3381c569ad99de24ce6fad57d04ce55cf1b3cd9","size":24737244,"filename":"pool/main/m/moby-engine/moby-engine_20.10.2+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.612-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237146,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.612","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"3116f9bdfc32bf0100c4513962b32b0ab7c1798c678c82e2d41621c75f5f1109","size":90827932,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.612-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"d9c1f432f1f4ce8f89a2a2694335dcf219702dd83a81bf05b2ec42731c01950a","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.29-ubuntu.14.04-x64.deb"},{"package":"aztfy","version":"0.8.0","architecture":"amd64","section":"default","priority":"extra","installed_size":42176,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"9de434526c8483d947b511fe42b3df26b38554b0a5f0e46a4988e5699924841a","size":8622710,"filename":"pool/main/a/aztfy/aztfy-0.8.0-1-amd64.deb"},{"package":"azcmagent","version":"1.12.21285.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"b8c0a57450638c73e1182d19744f643c241976aa57da8e35841635deedb7ac65","size":50058362,"filename":"pool/main/a/azcmagent/azcmagent_1.12.21285.002_amd64.deb"},{"package":"blobfuse","version":"1.4.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":34634,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.4.1 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"8dd6af68d3ff2402df0fa9f1b8f489597999b792d9c38b6501676e497a422dc9","size":9918238,"filename":"pool/main/b/blobfuse/blobfuse-1.4.1-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.408-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.408","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.14)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.14)","aspnetcore-runtime-3.1 (>= 3.1.14)"],"sha256":"9eef66bbade60a95b3d7b2c869144893eea2c53e85429060901a8201ab8c9c9e","size":48443896,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.408-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.300-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330666,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.300","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.5)","dotnet-apphost-pack-6.0 (>= 6.0.5)","dotnet-runtime-6.0 (>= 6.0.5)","aspnetcore-targeting-pack-6.0 (>= 6.0.5)"],"sha256":"5dcee2d1cea6d4d90cdda4cf70da1b5947f3d798d47b0b477dc4885513afe860","size":84870018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.300-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.32-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.32 3.1.32","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.32)","libc6"],"sha256":"fd90563cc5240ec457877dde687e8fa8a9ad27a00c196955578a155d64f06796","size":120802,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.32-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.3)","libc6"],"sha256":"b1538cee2b98d3910e330790382beb315724c3bbd8dd8d59ac272a952128bb94","size":142012,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.3-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.5","homepage":"https://github.com/dotnet/core","sha256":"714fa1cedf1983686dcbc9a2701799cf19b039629da67318ecb2275a5a651084","size":3508800,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.5-x64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66620,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"ef924dcac53519e9efeba109316bb1914f0d143616e8cbf72f596805b69de47c","size":23649004,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-runc","version":"1.0.0~rc92+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18424,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"e8dcd4b5b73741799e93a7872feebe8d2e7ab822352648e78e892db3f0e81538","size":6150876,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc92+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u5","architecture":"amd64","section":"admin","priority":"optional","installed_size":13367,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3aa0bb5a6f547f57449367e4231821f2c5d74d715b970ce3fcd539f7783d5467","size":5742626,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u5_amd64.deb"},{"package":"powershell","version":"7.3.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172238,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"8ec60ee3bd4721f5097f7faf55c1aabf984118821ed78baca70be3612516cc9b","size":69171666,"filename":"pool/main/p/powershell/powershell_7.3.9-1.deb_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71104,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.9 Microsoft.NETCore.App 3.1.9","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.9)","dotnet-runtime-deps-3.1 (>= 3.1.9)"],"sha256":"ed8a7d2622700881aec4df5bcb8dfbcc03c1871ccb3038bef5e3b30ec9d2a9e2","size":21668374,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.9-x64.deb"},{"package":"unixodbc","version":"2.3.7","architecture":"amd64","section":"database","priority":"optional","installed_size":111,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Basic ODBC tools","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["unixodbc-bin (<< 2.3.7)"],"depends":["libc6 (>= 2.14)","odbcinst1debian2 (>= 2.3.7)","libodbc1 (>= 2.3.7)"],"sha256":"3a1ee6341d9319731bbffbae775fd7f455bcd34d97237a82b58a3280a3366f24","size":19572,"filename":"pool/main/u/unixodbc/unixodbc_2.3.7_amd64.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.7","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.7)"],"replaces":["unixodbc (<< 2.3.7)"],"sha256":"a5ba3b5fad82f0330a8bf4b5b89fe34420ae9b884e75889d4a0803a455180be6","size":134622,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.7_amd64.deb"},{"package":"azure-ai-vision-dev-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":756,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Developer Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"845d2c21326f23d4b1fc2eb3e3731dc0dfe0b93b51af66c99e1013b7b50681b4","size":114288,"filename":"pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.10.0~beta.1-Linux.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11067,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.10","homepage":"https://github.com/dotnet/core","sha256":"3c8fc6205fe4da858312a53ed26f0135213d0c59125831e51309e484536801eb","size":3519186,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.17.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":113729,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"34800a59772281468a27c26289a56095c160a43f56e4e9cf37fb9b1acf04f7b4","size":31089900,"filename":"pool/main/o/open-enclave/open-enclave_0.17.0_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.111-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175186,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.111","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.11)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.11)","aspnetcore-runtime-3.1 (>= 3.1.11)"],"sha256":"1d89de60a7aecb43b5cbeaf07199809995dba4509ad1b6cbca893bb605a6fbca","size":42912182,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.111-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.15)"],"sha256":"bb6a784b886153a7655c94f81466776b7f2c121d67566bbb6d957a92a8f995cd","size":6611850,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.15-x64.deb"},{"package":"moby-cli","version":"20.10.23+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":50209,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5d46cb0b3e8e531fe6b1556d32a9e9dbffdb67b22bc3fe0c2daf446a3d85b3bd","size":9774914,"filename":"pool/main/m/moby-cli/moby-cli_20.10.23+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.8)","libc6"],"sha256":"fd31f75d787c6793c265f8521b647e06ce8b00327798d55607422ad78ad92c6c","size":142306,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.8-x64.deb"},{"package":"dotnet-host","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.19","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"278bed877fa7bc39a69554a244ee6caa905f499e7ad316ecd03c04138e8e65cc","size":55870,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.19-x64.deb"},{"package":"azcmagent","version":"1.29.02286.794","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"a2de8f368efc70d6c0d6de01331560fa3308f579559aa1706a2e2acc678981e0","size":54135290,"filename":"pool/main/a/azcmagent/azcmagent_1.29.02286.794_amd64.deb"},{"package":"moby-cli","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":50214,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"9919b50d49031d858c81a4cfbff7b84c66ed947f702ad7d2f9aace7db8ff9827","size":9764162,"filename":"pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.20","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.20)","dotnet-runtime-deps-6.0 (>= 6.0.20)"],"sha256":"356aef8ceafe55124bae9ad0deb58f3d020884e0edf1e7d6bf5f79f3f565bf7e","size":22931670,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.20-x64.deb"},{"package":"msopenjdk-11","version":"11.0.21-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317689,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"7c153e16c53b1b45b9ad3c94c4dc30e3574cca0eebdb1b69df5ce515db2d4f8a","size":166637290,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.21-1_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b343a98f70e1b5873dfdc5e3e430cb297332d7b151908d8b9a96169f471ec229","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.30-ubuntu.14.04-x64.deb"},{"package":"moby-compose","version":"2.14.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43880,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"32663f95c2fb8408df560b915d4b54f2bb654b566064437f685b8ed19a84edee","size":9648794,"filename":"pool/main/m/moby-compose/moby-compose_2.14.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3ab05a7d67163edc77a0d03071534fb3245cab1a754f77c7257726b12a3b94d9","size":20990140,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u3_amd64.deb"},{"package":"powershell-lts","version":"7.2.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186954,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"bf822a5033403c396126818985fee79af163b62bb015603d81400e90ac9e32c7","size":69396358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.2-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.9)"],"sha256":"d7b54dab1e26e0c64c4c5d96e5e49f1448dac7af404e7b2a17a481ffceb4cc08","size":6084140,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.9-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17476,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.12)"],"sha256":"e07ab6c36de877eb61fb9cd182d657b7e6a53b762da719ace97181cd481efcd7","size":5773228,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.12-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.26 Microsoft.NETCore.App 3.1.26","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.26)","dotnet-runtime-deps-3.1 (>= 3.1.26)"],"sha256":"af152782c61c6692099936e87411728f533c9c5c435c761f7c94e4af1a5e5b61","size":21806626,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.26-x64.deb"},{"package":"moby-cli","version":"20.10.11+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":61003,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1c97c4538464a3f58e13e6c3f3c3419471b6815bcfc215f3e32c82b8024bb6ff","size":10618136,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-3_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174370,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.112","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.12)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.12)","aspnetcore-runtime-3.1 (>= 3.1.12)"],"sha256":"37474633fbd4a915592a311245a2e64679b4d5c8b130c1edd488aabab49576a3","size":44274732,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.112-x64.deb"},{"package":"aziot-edge","version":"1.4.10-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18312,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.4-1)","sed"],"sha256":"f16c37a6f8550f6f100fcfbec01e3a829f8382472d123fa5279a192511f9ebe1","size":4360864,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.10-1_amd64.deb"},{"package":"aztfexport","version":"0.12.0","architecture":"amd64","section":"default","priority":"optional","installed_size":72408,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"436aa6a7e279bebeafa09d520485ec92bf9336b24dad38f8f226a98a5b1bd0df","size":11732782,"filename":"pool/main/a/aztfexport/aztfexport_0.12.0_amd64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3023-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"f0c7f2d75631bb15d657bad2a6fe7160557fed3f31aa4e8858052bd644b0699e","size":166092780,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3023-1.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":76245,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-buildx-plugin","docker-ce","docker-ee"],"depends":["libc6 (>= 2.3.4)"],"recommends":["moby-cli"],"replaces":["docker-buildx-plugin"],"sha256":"4da5438cdb779ace13629af714b8c1c918939810a4be3cd50f4b7e88ae2f66ea","size":34231376,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u3_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016890001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"ec9f9d3a58b953b4c0ae51d23a66ee1f3848089a23b32fc60f4279df5eda1fe7","size":10222,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016890001_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350058,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.108","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"df8a89bade0d908f4d57ef6fffb9510e0efeda2350a8a4dc7ce5f57211ac79ce","size":90674394,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.108-x64.deb"},{"package":"azapi2azurerm","version":"1.6.0","architecture":"amd64","section":"default","priority":"optional","installed_size":36328,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"e5ce4199c1bb93083fe7d3d718e2fc94ff5d4f588256729e1201c60a104e4c1d","size":9880990,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.6.0-1-amd64.deb"},{"package":"dotnet-host","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.3","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3f16a25e552118bdefff7b064466df569c214acfb75b7466b89af1b40879db9","size":52934,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.3-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4502-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c38406fde5a67fe3a2bed2735865b1b3e51d6f23ad0ee23bb27461433011383f","size":221301300,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4502-1.deb"},{"package":"powershell","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1b140bf45d3eefdf41ea4dc0793bff981fd16f120845546eb561c998c7b8ee2d","size":68191810,"filename":"pool/main/p/powershell/powershell_7.2.12-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21337,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.2)"],"sha256":"2c6630799fbc17eebedc7a256c11e3340201d455e5c2aa5ce64e552aa07ab848","size":7050582,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.2-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.15.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16147,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.15.1~beta.1)"],"sha256":"4927ad8980bacaa284aae6a65dfae195ebd74c3546a9dc3b5f283adbff09339e","size":4976590,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.15.1~beta.1-Linux.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.22","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.22)","dotnet-runtime-deps-6.0 (>= 6.0.22)"],"sha256":"86c8edb1b543a25dfef7dae191243d36ff939800a0a04f6f6d2a597d208711e0","size":22756012,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"2263268dd3724b84e315045019c19ea3b12dc90cb12a983f49fdfa0c45aef2f6","size":3520144,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.18-x64.deb"},{"package":"powershell","version":"7.1.5-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174301,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"4d0ee19617ebd696527e966a35a00f94ca3e83c850efdde10cd4b27369a17288","size":68234364,"filename":"pool/main/p/powershell/powershell_7.1.5-1.ubuntu.20.04_amd64.deb"},{"package":"dotnet-host","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.3","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"416e02afae3d47adfe80662d495d3c2abbfd44828a2f2c2269f6409c0df07198","size":55716,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.3-x64.deb"},{"package":"dotnet-host","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.29","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e41a81816f2530fd3a54b2c06027fc3b63c07779ee6e841cd69a6ad46c754af7","size":36572,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.29-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.24 3.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.24)","libc6"],"sha256":"7e93324e11a85e2e278d2c457782730536863ada2be36536fa906daaa8430408","size":120808,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.24-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e1e1b6c0ce33a0b2dca2400809844b154a4e79e28803ae5c08c1d8ad9897eb39","size":124372068,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4590-1.deb"},{"package":"powershell","version":"7.3.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196866,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"40bee3deb9ac71dfd86a7dbf2f2bdcb8d039fa454dc9d705d579e4957194fcd4","size":71643662,"filename":"pool/main/p/powershell/powershell_7.3.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"4438107a1e87d88552be66d4f97174d2858749562bc585e111a556c6163c62d8","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.4-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"89fb369b900c258e1b562eb19a94d7f0d39ed85490fc679686802d0633d67b20","size":224535344,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4585-1.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.2","homepage":"https://github.com/dotnet/core","sha256":"082940af64707c787fbaf9ad384c1bffcbab69a163bafcb20c5fc81a15602943","size":3398280,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.2-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.30 2.1.30","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.30)","libc6"],"sha256":"836cfc014fed64658c164f0cfa5c1a72239cf1cddd6ec540cdb55dfa12e7be4c","size":143462,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.30-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"3f6ac011906fa751b3825746b28515160a1b7b1571a8721ab481da9c5d8ddd69","size":2568066,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":188276,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c582b062d21a97cb7efc4a3e386364d5b1c34e1e84b349fc716bf0907a399572","size":69625606,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"cbac333cbfd66f544a0f17c1b8d28d9ba4fa16ffc4800e5b7b49d04409961ac6","size":2650,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.4-x64.deb"},{"package":"moby-compose","version":"2.2.3+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"2efc3db162bc600ead2d9d9d61f1d2c11b44e175f7dc886a903a9bae2db8af56","size":6318328,"filename":"pool/main/m/moby-compose/moby-compose_2.2.3+azure-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"346995543fd62c9bcb5f29d79defceaa1dc045740a7744e9e059650c4a51c779","size":2370,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.9","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.9)","libc6"],"sha256":"d11e1cfee96cc2b1bae9292643cd3ba66bc93256eb6a4b575516539ce70dbcd9","size":143918,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.9-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.117-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.117","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"5e35a944d7c356e99ad426f7926222e25137a168f25180a84e250f1452a5a4df","size":44408280,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.117-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.15 Microsoft.NETCore.App 3.1.15","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.15)","dotnet-runtime-deps-3.1 (>= 3.1.15)"],"sha256":"ba356f88ddb6140d0268fd0be5a5dcc31c75644078c0775ff6143a0a20c9d930","size":21779462,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.15-x64.deb"},{"package":"moby-cli","version":"20.10.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0896d5309e54afa99f815f14c8e3ff04e3358dc43b55d8d6c0686c1132a2c106","size":9662014,"filename":"pool/main/m/moby-cli/moby-cli_20.10.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.12","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.12)","libc6"],"sha256":"cf766a63271559df4756a494ea2f4e44eed0439aa06e9abaebd9ef4605864e93","size":142378,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.12-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.12 Microsoft.NETCore.App 5.0.12","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.12)","dotnet-hostfxr-5.0 (>= 5.0.12)"],"sha256":"e4cdeb68aea4302db017410c3f67ed4de22daa1d2aeaecf63fc31ca6eb2a6d47","size":21494580,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.12-x64.deb"},{"package":"msodbcsql18","version":"18.0.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"89901f55eb486aa4da822dc76cf0fd6e118315d4ffecce59a2d06ef704cdd01c","size":748328,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.0.1.1-1_amd64.deb"},{"package":"mssql-zulu-jre-8","version":"8.50.0.52-1","architecture":"amd64","section":"java","priority":"optional","installed_size":108803,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"179bed451b4dc9a714fd420d68a1c5dc6181e844a3242f1d7389b796f8b8f2f6","size":43383650,"filename":"pool/main/m/mssql-zulu-jre-8/mssql-zulu-jre-8_8.50.0.52-1_amd64.deb"},{"package":"moby-compose","version":"2.10.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25680,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"dc5d0e7d902c4109aeabea6b318eeed91edab1a7ec5cefa93d0271b5e2a386a5","size":6498584,"filename":"pool/main/m/moby-compose/moby-compose_2.10.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.58.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":207291,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"2756a8f62089c0658da3ae4ed07a1ee3ecbf66f7402a949755638fd545bb3636","size":60775648,"filename":"pool/main/m/mdatp/mdatp_101.58.80.amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18554,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.15)"],"sha256":"4d0dbe848462066fa801d87436c285f85a23bf9f191c10f661de48b5cf270eb2","size":6085368,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.15-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.112-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350106,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.112","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.12)","dotnet-runtime-7.0 (>= 7.0.12)","dotnet-targeting-pack-7.0 (>= 7.0.12)","aspnetcore-runtime-7.0 (>= 7.0.12)"],"sha256":"afba66259ca95dc675eb24bbecf5b0bc0aacf07f7d48517c35ba62f3e2456cb2","size":90698250,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.112-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.12","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.12)","dotnet-runtime-deps-6.0 (>= 6.0.12)"],"sha256":"1d806a6e46ff240495369dd475725db165a9affec62a406849716b0f1639ac0e","size":22701764,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.12-x64.deb"},{"package":"moby-compose","version":"2.22.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58356,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"8b02f3867e62b644ccc79eca07d9df6afe37c10b76ceca0bc2150a8eda8e0aed","size":17591254,"filename":"pool/main/m/moby-compose/moby-compose_2.22.0-ubuntu20.04u1_amd64.deb"},{"package":"msopenjdk-16","version":"16.0.1+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":348947,"maintainer":"Microsoft","description":"OpenJDK Development Kit 16 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"24b1b22b78ab1df983dc071387e986f867f6df1776d456009ed3dc3fbb03332b","size":205299892,"filename":"pool/main/m/msopenjdk-16/msopenjdk-16_16.0.1+9-1_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.2-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18085,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"e5889ba4810a386b9936e79b88d8227d234b75fa23195cd551e0a83167c92421","size":3862392,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.2-1_amd64.deb"},{"package":"moby-cli","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":35186,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0caa95c30f185e78bba8715e97da7136f060d781e76bf39bf6d37c18f0e8dd72","size":13042042,"filename":"pool/main/m/moby-cli/moby-cli_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2750-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5f4fa83a6479b527ba9275ee5d855f7286effe0af04cb156ec6e2820179a0336","size":199612768,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2750-1.deb"},{"package":"dotnet-host","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.8","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"392275546433e1fa28f1ae534c201dac53bf96e6cd0d3ec8ff70a26fc249b3f0","size":55844,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.8-x64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"4a3d543caa33f4be29d7aea0a33efa581443e6dda42bfdbd1dacd7be2166fee2","size":44742158,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68423,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.14","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.14)","dotnet-runtime-deps-6.0 (>= 6.0.14)"],"sha256":"78bcf00bc7cee6a25df87ca96973a708579a9da6946131698a1fd10444e67dbb","size":22694152,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.14-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"7ea14d800e7ce879d94968dd78e31ad271354d0c84a6a7b1466b1587be999005","size":499706,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.7.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366874,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.305","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.8)","dotnet-runtime-7.0 (>= 7.0.8)","dotnet-targeting-pack-7.0 (>= 7.0.8)","aspnetcore-runtime-7.0 (>= 7.0.8)"],"sha256":"4d75c12e2936c62b5be154a61969239f44680cc12bd9b157f32ea40b93ebeefd","size":96542698,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.305-x64.deb"},{"package":"mssql-mlservices-mlm-py","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549271,"maintainer":"Microsoft Data Platform Group ","description":"Python packages for Microsoft SQL Server Machine Learning Services (Full install). Provides python packages revoscalepy, microsoftml, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-py"],"sha256":"f40b5c6c70354d67c278283a872c052ac559bf60315d911cb4ec5e8f0026c894","size":521701284,"filename":"pool/main/m/mssql-mlservices-mlm-py/mssql-mlservices-mlm-py_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.11)"],"sha256":"5b0d4eb3d443b454fde34563054c0edf602f60fc3ddde753a2d21db4259df218","size":6608208,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.11-x64.deb"},{"package":"dotnet-host","version":"5.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"1a95de2961d82020f738965e57218af627370d8b2cbe8008b6fca6047c9db651","size":52666,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.13-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70839,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.9)","dotnet-hostfxr-7.0 (>= 7.0.9)"],"sha256":"cf64af93034be5eb0e8b4152100ee1f62ce1c41db6c3e8efc870c60ece52b222","size":23199430,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.9-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"0a904362091791c5465b9ee18a2ff9667f052d59e5d4bd24d343f8d11de4839b","size":155422440,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5198-1.deb"},{"package":"moby-runc","version":"1.1.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"3827a6839c3a55bbb8f0cc26906f21bf7620369e5ddf8de7964baeda6c8786e0","size":5765922,"filename":"pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.22 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.22)","libc6"],"sha256":"5d4aacd0bbb204df019c83122607cfa3b4788bc6165843ba5bf13942b78ab04f","size":120766,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.22-x64.deb"},{"package":"libmsquic","version":"1.9.0","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@d9433bfe88a5>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"bd5ba068566c5cd6f84b8c1e7ce88332f7c5fe8cea9e6f5e52a700a1a57e4b48","size":773398,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.0_amd64.deb"},{"package":"msodbcsql17","version":"17.8.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"73bfd1fb1b70dac76e68e59f5635d9383e3bce223ccbd73b43246cdef4a5b626","size":743884,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.8.1.1-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.6","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"293ddde2a6efd98dcfd5cef91444d5a5226bfa3b52592b81c303fe610117314c","size":55838,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.6-x64.deb"},{"package":"powershell","version":"7.3.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196826,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7190f391fdbacfababd8a2801b9ac1ff2b98663fefa2bd70b2bdc4a366ed02e0","size":71622188,"filename":"pool/main/p/powershell/powershell_7.3.2-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222412,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.201","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"970a6612345d7b157b485fdb3ca12e3792768a383d95eaa6d0e49a8b0096f8b7","size":57570422,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.201-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":508,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core (= 0.9.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.9.0~beta.1)"],"sha256":"97398caf0fcd0cacbd467cdd29eaaae2c3282c45fb179778841773aacc884742","size":78472,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.9.0~beta.1-Linux.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":512,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core (= 0.10.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.10.0~beta.1)"],"sha256":"e1ea2d650eddc24d02243d7b2a656e99f14dc67730242cbc05de820419d29ad4","size":79326,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.10.0~beta.1-Linux.deb"},{"package":"msodbcsql18","version":"18.2.2.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"2a2e0b7fe70fd41ff87823d67e7544b555657c333f22541f5a1b96fa82b1741f","size":752616,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.2.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.11","homepage":"https://github.com/dotnet/core","sha256":"f5f590c6be535a897976074d656ba9fe04be87c63a860a0217db724c6518178f","size":42744,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.11-x64.deb"},{"package":"msopenjdk-17","version":"17.0.3+7-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323643,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9ceeed9a945f9b772de6157a86eb1ec2a7e995fb2bd06b796c8687a9e8e1b43b","size":191708950,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.3_amd64.deb"},{"package":"azapi2azurerm","version":"1.7.0","architecture":"amd64","section":"default","priority":"optional","installed_size":38084,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6389f078d27cd88e4d98a835f40d2c4a59ccab93f65bd4811ba21ba6219f7711","size":10216844,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.7.0-1-amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.4)"],"sha256":"85b026987b04ff8258d6e42677e2292d1b775f562e86ae7a1de9305646c27147","size":7051730,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.4-x64.deb"},{"package":"microsoft-identity-diagnostics","source":"microsoft-identity-diagnostics","version":"1.1.0","architecture":"amd64","section":"java","priority":"optional","installed_size":3944,"maintainer":"Microsoft Identity","description":"microsoft-identity-diagnostics","depends":["default-jre","jq"],"owner":"Microsoft Identity","packager":"Microsoft Identity","sha256":"c3fea4c7143de315a6fc5a565939a7be654aaecc113e5e8a250ac83fbb645e86","size":3710392,"filename":"pool/main/m/microsoft-identity-diagnostics/microsoft-identity-diagnostics_1.1.0_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.17)"],"sha256":"ea006190e965a407726db2ec6f533f39e83eea4785cba16b89fdc55c561800e8","size":5771072,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.17-x64.deb"},{"package":"moby-cli","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61009,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"084cd12e9d8a5b238eb2e10dafd4adc2f10e8fe586021682d8f4f891bd3e517e","size":10611276,"filename":"pool/main/m/moby-cli/moby-cli_20.10.15+azure-1_amd64.deb"},{"package":"aziot-edge","version":"1.4.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18300,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.3-1)","sed"],"sha256":"0ae876963ac701d7686dcae51c07ed0edf0ab3a529fb1f87ae76b9d191a21775","size":4361250,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.9-1_amd64.deb"},{"package":"moby-cli","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"5b8bfba41a2afa6de91fbf35a0fc005c549ba4428acefab6216fc070a230b137","size":10594424,"filename":"pool/main/m/moby-cli/moby-cli_20.10.14+azure-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"22db54b2b0a7d85c4fd6ddcbd1071cf6690f37fe1f86b2ab1d76605301c297d3","size":2126478,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.2748-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e4757e43421856dd01a297de2518a0979455f303affc4df7775a9dacb9ac464d","size":155251980,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.2748-1.deb"},{"package":"moby-compose","version":"2.14.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43888,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6265ccc1a795669685d383783e4f2e6b973b862e3fb5775274699758a0a66e3f","size":9652378,"filename":"pool/main/m/moby-compose/moby-compose_2.14.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-compose","version":"2.0.0~rc.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25268,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"9571f78093694921902fe407649388fd4b48b8f89432893458891e2ccaea8660","size":6247244,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~rc.2+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"00194f5ea94974620a3255fc29990b323b621317fed2e9f209dcadf14528aaab","size":408388,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014760002_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"e4e957b810ff363c724afd9398a9d02fe4cb3f78fd611694d5b9ab9abada1bfa","size":2662,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.18-ubuntu.14.04-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"ed6c17e9b097f870215ae32caba285a0a5e80f0281d42f9e0e53250eba6095c8","size":1308164,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.6-x64.deb"},{"package":"mdatp","version":"101.56.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":209752,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"f3da7d4ec2f218f3c89d55f054f8981d85c444935882dfd3944edc076a0f91e8","size":60952270,"filename":"pool/main/m/mdatp/mdatp_101.56.62.amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.15","homepage":"https://github.com/dotnet/core","sha256":"44c3a29730492668bbd5821e70081e0ddb20b38fc2eaa5c4c2ebf99fe9784e44","size":42262,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.15-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.308","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"79fc932e3258553858c6382c16802fcfa94d62f28517117af2afb39d56a11948","size":85094014,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.308-x64.deb"},{"package":"libmsquic","version":"1.9.1","architecture":"amd64","section":"default","priority":"extra","installed_size":3728,"maintainer":"<@9d58bd1cab7b>","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"provides":"libmsquic.so","vendor":"none","license":"MIT","sha256":"005fa43baa219c99f3dbd5390570f7784ad57a665ee75e526dd23a3c1ef2cfd7","size":773500,"filename":"pool/main/libm/libmsquic/libmsquic_1.9.1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.30)"],"sha256":"402f832862ef2322cff59931844b5adbcbdab63725a9925667883ff45dfe9ed0","size":5775564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.18 3.1.18","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.18)","libc6"],"sha256":"ee67dd1b1a5740ae263785574907efd2869998fc9af0d6735b196a5410e10eeb","size":120800,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.18-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"5157e4e1f5161048ca76e1fe1cff487d566ab21e491dc55346b9ca02dea26707","size":10202,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017190001_amd64.deb"},{"package":"aadsshlogin","version":"1.0.020320001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"3f5c88739aae903fdcc035eadb492764c0d0c2d8faa2db9432f1b7eeabf1bcd8","size":415792,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020320001_amd64.deb"},{"package":"moby-engine","version":"20.10.24+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86944,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"530b25a33deb1641dd9ff15065ec7ba248a9ded75b96d2409cffe9d8970f1533","size":20691414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.24+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.11 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.11)","libc6"],"sha256":"346c1c49b7f41d464719a2389b1340515b64899cbef07d560eafd65437064630","size":140414,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.11-x64.deb"},{"package":"mdatp","version":"101.98.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":311625,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"147bab5f68ee0bad8b2eec5dd67bf10db5ee75bcc867902d63ad39b706e351ab","size":120076756,"filename":"pool/main/m/mdatp/mdatp_101.98.64.amd64.deb"},{"package":"aadsshlogin","version":"1.0.020810001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"19454afb0d67ecf652c90ecbf65443b5524652960848ad267989b2122edcd5e8","size":421574,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.020810001_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.419-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189759,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.419","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.25)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.25)","aspnetcore-runtime-3.1 (>= 3.1.25)"],"sha256":"9b5337bd95cc181c5bb932c143f3113176dab3e06285edb8855cb25dc6aba921","size":48632002,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.419-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17496,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.18)"],"sha256":"96d5e5d5856a7748dca4536b045a993327362e7fc8b70403f71a7b1d511e40e0","size":5770944,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.18-x64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.302-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366165,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.302","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"0eb71faed541f514db82c099ca2673a31f61a1610d609015125e5bf8b0825127","size":96471690,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.302-x64.deb"},{"package":"mssql-tools","version":"17.9.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"738e74704c935e0e6710a486b5607629201e4d1ccd8267a007286bad06314979","size":210546,"filename":"pool/main/m/mssql-tools/mssql-tools_17.9.1.1-1_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.24","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.24)","dotnet-runtime-deps-6.0 (>= 6.0.24)"],"sha256":"da2ab36b08a57243f18bb74639b7c3d04b208b53cc97fa52a6e7fadbfeb3a76f","size":23042886,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.24-1_amd64.deb"},{"package":"dotnet-host","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.14","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"d3cbd0265d728a2e0f045f86b1426f91511042c41d64dd5c842f98a9e31a3cb3","size":55756,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17477,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.28)"],"sha256":"d3462772eb5accb36372a0b01f079b44da114b8f9c8a404ae4512c4ad8df2fa6","size":5770252,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.28-x64.deb"},{"package":"mdatp","version":"101.23.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":151284,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"a7579005e783af0a46215df77bba992acd3d641fb72e331d9b7b83d958db4f33","size":44873452,"filename":"pool/main/m/mdatp/mdatp_101.23.64.amd64.deb"},{"package":"moby-buildx","version":"0.9.1+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":65424,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"da7bb023af3964e47ea808fc590db7ea4b9178253ef0ef5b7959f33e026825cf","size":24476584,"filename":"pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu20.04u2_amd64.deb"},{"package":"azcmagent","version":"1.8.21196.008","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"48220f8a0d8da89a839770f528dc24c937d37d07c4a1b250f82c40589ce987fd","size":49539918,"filename":"pool/main/a/azcmagent/azcmagent_1.8.21196.008_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.24 2.1.24","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.24)","libc6"],"sha256":"1c963d730df35afbdd08774445048e21b215fe4a1ca4aa7a315038f262206fff","size":143978,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.24-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.613-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":237379,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.613","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"af89a736bbe1bdd955cf185d762f48c2538da908fff74b8c5625a68a928280cf","size":91109030,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.613-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.4","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"98e226c6ba99ef984fc0672c64c50b5ad3b1b03ba574ddbcdcb87cb6920100a1","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.4-x64.deb"},{"package":"moby-runc","version":"1.0.2+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":15164,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"966319b07864ddb965f0fae70aa331b228f9ba5ef8eee8fc5bccec0be9097d61","size":5342240,"filename":"pool/main/m/moby-runc/moby-runc_1.0.2+azure-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.3","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"47224012dd00dc4ca3922f53ec6f28b59183c31e8b96d6fb5378f16bdc48ea58","size":2646,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.3-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"b53ebcfacdf29eac63b0cbfbac377be5a0d43604f42f9a81332a3bd7ef3ca668","size":8618,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.0.0_amd64.deb"},{"package":"blobfuse","version":"1.3.3","architecture":"amd64","section":"devel","priority":"optional","installed_size":32116,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.3 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"e7e371cd87cdccddccd16a489a8ce328fc91966000cf15b231b8071aa484bbd8","size":9247938,"filename":"pool/main/b/blobfuse/blobfuse-1.3.3-Linux.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2855-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"9a9bf7427c72d85516659c34b1d3155144bc9f45e8268b5afb5fd6f6cd3b80e2","size":165951860,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2855-1.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"298ca20f667539f0447ce70b602175c5a43667e4df2a5918850e38be70d93e74","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.11-1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.18.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3128,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"df9e26395b518354f6b59724ca4a99385a81d0dcd93116629e650791ccc54373","size":854522,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.18.0_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71070,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.4 Microsoft.NETCore.App 3.1.4","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.4)","dotnet-runtime-deps-3.1 (>= 3.1.4)"],"sha256":"28a521d6ea2af92c6c3f028cfe5de65f49830fedb26cd0ab8c50716a9093414e","size":21758502,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.4-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":330659,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.303","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"e03edf1562de2d46ed9ede9b2090c8c67c694c22dda9caab48a7b3de7bbc994c","size":84893404,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.303-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.29 2.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.29)","libc6"],"sha256":"037ac33738434a2134563d40a0b20811bb4e01543bf25a16d700f769e1117470","size":143502,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.29-x64.deb"},{"package":"msodbcsql18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"b03047121eb77666ab31d842f1b5e7abf0d488d4964de97cd7864296312c5058","size":751576,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.1.1.1-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.0","architecture":"amd64","section":"default","priority":"optional","installed_size":27863,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"7e1318fbdb8cb45bcda27e89eb70503024856fc6dd746c6ec4afaec7583e357d","size":13151206,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-Ubuntu-20.04-x86-64.deb"},{"package":"moby-compose","version":"2.4.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25900,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"a44fe5896d17c913708b1ec073a27b3005e06e2da4ce1bcc4e9d66105deaf0c7","size":6553632,"filename":"pool/main/m/moby-compose/moby-compose_2.4.1+azure-1_amd64.deb"},{"package":"dotnet-host","version":"2.1.30-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.30","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"89ac9a18542ccbf905a024567e4b112ac7ad87fe01341b88f36076dc3aa42cac","size":36608,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.30-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.414-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.414","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"a74f1f420d43895ed7672cdaa10c34e6061f3794203c21bda1163a805da6003d","size":47689264,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.414-x64.deb"},{"package":"aziot-edge","version":"1.2.7-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":24498,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.5-1)","sed"],"sha256":"be275ac3efb940ce9813ec539b4d71deb49f1308890975b3396441ec15bb0bf1","size":5801232,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.7-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.420-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":192811,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.420","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.26)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.26)","aspnetcore-runtime-3.1 (>= 3.1.26)"],"sha256":"2559bd4f2f5f56aa43038f36b6c6ecd62e80f2f7e7b2c42dcea35f2ff57c4393","size":49628712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.420-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0edb21dea4dc5410ef2d5eb293973ad3674cf78a0c2feca897d8b78de2bf1be0","size":3521342,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.11-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.201-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.201","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.3)","dotnet-runtime-7.0 (>= 7.0.3)","dotnet-targeting-pack-7.0 (>= 7.0.3)","aspnetcore-runtime-7.0 (>= 7.0.3)"],"sha256":"f76fd2500bc24f7d149bc04898c38b7739855f89083f9ba6bdeb608be077e336","size":91822146,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.201-x64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"38f353af5ed7d7fc336527e53b4a000a63e832d9aa2431ab9c6cf0343ee7cdc2","size":2886,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.3-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2453,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"01ff7a8f22ae168b292f2ae2195d5ca245ccfcce3731a668d2297d688b48ec55","size":600674,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.9.0~beta.1-Linux.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.16","homepage":"https://github.com/dotnet/core","sha256":"caa042a6bbd325c7bbb6d43906cc82643139192e294081d965ab9f01fbdfa099","size":2134180,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.16-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.13.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"2b0162e4c5436de0e1d77bd3983f4c30980d6e0f9082b4605bde0b1dcedf0edd","size":276220,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.13.1.deb"},{"package":"mdatp","version":"101.18.53","architecture":"amd64","section":"devel","priority":"optional","installed_size":161906,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"81461dc1ff36d153bd25ffe1df4bac5b86d0c1f04dfaf51bc88983cd5bd71c1e","size":46555298,"filename":"pool/main/m/mdatp/mdatp_101.18.53.amd64.deb"},{"package":"mssql-mlservices-packages-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":930206,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Minimal install). Provides RevoScaleR, sqlRUtils, MicrosoftML, olapR. Excludes pre-trained models","depends":["microsoft-r-open-mro-3.5.2","microsoft-r-open-mkl-3.5.2","mssql-server-extensibility (>=15.0.2000)","microsoft-openmpi (>=3.0.0)","zip","unzip"],"sha256":"e14ac0e6d687739a1e3909989000a25fee5d8a9929b48e39dd78f00943c6f469","size":315570216,"filename":"pool/main/m/mssql-mlservices-packages-r/mssql-mlservices-packages-r_9.4.7.958_amd64.deb"},{"package":"moby-compose","version":"2.0.0~beta.6+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":24812,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"f56dcf1e37a8142f372a00065d6777249c2824527082902abe2edf9c6a99ce57","size":6150688,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0~beta.6+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3568-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"7740d9dabdc573fd79a667270286de40d4e7e228ac625b13430c6817329591ba","size":210162064,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3568-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68340,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.14 Microsoft.NETCore.App 5.0.14","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.14)","dotnet-hostfxr-5.0 (>= 5.0.14)"],"sha256":"e4586a6c19e25f8de85705e8eba701d831528a41af4802f56be25a099b6a69ac","size":21997426,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.14-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17497,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.20)"],"sha256":"eb3e6be4924a022cd556e69e57c659224958f95923f07291797ae2dc163b1a85","size":5771624,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.20-x64.deb"},{"package":"omi","source":"omi","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4932,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"50b375bd6daebc0d958bf2e40b4d1344d0d0e60f33a96fe9047fed28177a7978","size":1916714,"filename":"pool/main/o/omi/omi-1.7.1-0.ssl_110.ulinux.s.x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.19","homepage":"https://github.com/dotnet/core","sha256":"bf3f3c369ee7c8d2ec6a8b943cb33d6ebdefa6c7a9c10da16bc10c6301984c24","size":41926,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.19-x64.deb"},{"package":"mdatp","version":"101.23082.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":411025,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","libpcre3","mde-netfilter"],"sha256":"6eb534b0e23b061644bf6b11a6eaeacc59e7f44ca5afba33a505f3950ebf456f","size":150354446,"filename":"pool/main/m/mdatp/mdatp_101.23082.0009_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2630-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"3b3068a6c3dc8569dfe470d4d49907b94ccc0b26daaf5ea75c1b14866374b5b0","size":196791632,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2630-1.deb"},{"package":"dotnet-host","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.16","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8d6bc7c7136b190c4be6ad8166c1fc434b7b5e01b1cdb92de4ff74011784112e","size":52610,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.16-x64.deb"},{"package":"powershell","version":"7.3.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172244,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c4ddfbad0231ba18ad70571c4c5d69f5a2dd5f7834054737ac6bb4089d83317e","size":69188746,"filename":"pool/main/p/powershell/powershell_7.3.8-1.deb_amd64.deb"},{"package":"servicefabric","version":"9.0.1260.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"06efd5242831d6cbe0ad52c5f48c8c7b8f351111866a2157213bea352bf751d6","size":219809800,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1260.1.deb"},{"package":"open-enclave-hostverify","version":"0.17.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"eac91b2aeb9a9d5d65bfc3bee92bc182b45a1dc36206565b9e1a29991510cde8","size":838576,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.2_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.418-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189686,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.418","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.24)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.24)","aspnetcore-runtime-3.1 (>= 3.1.24)"],"sha256":"110ed42ce693e9e87a8d262ccfb4890258c1b9c67aa74289a75ef05270284c70","size":48701804,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.418-x64.deb"},{"package":"dotnet-host","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ced1920acd3fa15e7b196570f2a8ccb7f7b5f190d6f54bef6542f5812652647a","size":52544,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.10-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.524-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228636,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.524","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.28)","aspnetcore-runtime-2.1 (>= 2.1.28)"],"sha256":"4337dc8d667486f84b352f6ed5191439e4eae6ce9e7053c113ba86f6ea20dbc6","size":89347104,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.524-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.9","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.9)","dotnet-runtime-deps-6.0 (>= 6.0.9)"],"sha256":"43fd3fccf39777add0f20b110264ad674c51db7e71cba095e694e45fd286b195","size":22757840,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.9-x64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.5-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":124351,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c6294b5e3f4ccd0be66fbbaa85c712a6e8ea40b6b1ef21b2c0fa75665b2a2bbd","size":46492464,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.5-1.deb_amd64.deb"},{"package":"az-dcap-client","version":"1.12.0","architecture":"amd64","section":"unknown","priority":"optional","installed_size":928,"maintainer":"Microsoft Corp","description":"Intel(R) SGX DCAP plugin for Azure Integration","depends":["libc6 (>= 2.14)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.0)","libstdc++6 (>= 9)"],"sha256":"8f8b8a97e62e5e6c96737e6ad5beebb6cf72ec287ff91f22dbd012de8b3b0c3e","size":157348,"filename":"pool/main/a/az-dcap-client/az-dcap-client_1.12.0_amd64.deb"},{"package":"moby-compose","version":"2.0.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25308,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"77efca81480ca14296bb9ee2431243f2f7a1f4a99e0416de54cd6a09affaba5c","size":6258904,"filename":"pool/main/m/moby-compose/moby-compose_2.0.0-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.417-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189683,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.417","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.23)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.23)","aspnetcore-runtime-3.1 (>= 3.1.23)"],"sha256":"c2eb73259d21d048a36a6dd1a94b491b22d803066efc0ca0416daf3a4aea8b27","size":48794952,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.417-x64.deb"},{"package":"aadlogin","version":"1.0.015090003","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"a0fc2406eaa9ec62c488c6663cefe2d8c4ed0422d7c0a5776dd8fda173ebb2c8","size":409538,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015090003_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3904-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fce4415081b2014454c7e0e09b55cb0c4518ecdfdfa96e6b7e7e5054b0548a9b","size":210976936,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3904-1.deb"},{"package":"azure-functions-core-tools","version":"4.0.5095-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"fbd61709f8d36b229cc8fefd7fb657958c6e05a60cc63cce0e8e1c61bfe2e267","size":156055452,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5095-1.deb"},{"package":"azcmagent","version":"1.30.02313.864","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"217334ca96338070b7e7592e98eebff6de450b154e79b095fb77956269d08bb7","size":54191138,"filename":"pool/main/a/azcmagent/azcmagent_1.30.02313.864_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4865-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e5a1b29838b4bd994f116abd7703c5705e0e88177b0899d91f157b8592ed1864","size":126081380,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4865-1.deb"},{"package":"iotedge","version":"1.1.13-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22410,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.13-1)","sed"],"sha256":"5226e164dd8e0b6318a9c83ebc12ae4b7f10dfbf1da6b489616c328326d2a17b","size":5365236,"filename":"pool/main/i/iotedge/iotedge_1.1.13-1_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.12","homepage":"https://github.com/dotnet/core","sha256":"dfb9214017c725b2f2857bd83da980623a9136e48905375df61319b1ccb12ec1","size":3531316,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.12-x64.deb"},{"package":"blobfuse","version":"1.3.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":32438,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.6 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"6aede32ccf34dbfd76bffbb270a4fe2b15a2f2bf1f5bf8ea4fec63f80f9081eb","size":9324526,"filename":"pool/main/b/blobfuse/blobfuse-1.3.6-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"0e7f8c54b3dfea3b702f365b5a3e6ea6d8cf4a7c4662060468bdc85b7ba5bc0a","size":3510880,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.15-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.6-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68327,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.6 Microsoft.NETCore.App 5.0.6","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.6)","dotnet-hostfxr-5.0 (>= 5.0.6)"],"sha256":"4df8bd5483874ceecce6b637025073d3b22786fee9ef4af2dedb232eed5873e2","size":22057276,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.6-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.517-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228837,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.517","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.21)","aspnetcore-runtime-2.1 (>= 2.1.21)"],"sha256":"e6e6d81c8eaa8b4fb732e5f7fdac15e177c239dbd031a175b97145ffa6f0b786","size":89500922,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.517-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"b80fa237cab00252cc80941d7c912bed0c6565891b9ad4a41ebb2641e1c138a8","size":2133678,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.22-1_amd64.deb"},{"package":"omi","source":"omi","version":"1.7.0.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"aea9bbfadb50a1d585f155e1288b96a271e5323745a8237804d4d1ebab50e5fd","size":1885624,"filename":"pool/main/o/omi/omi-1.7.0-0.ssl_110.ulinux.x64.deb"},{"package":"mdatp","version":"101.23052.0009","architecture":"amd64","section":"devel","priority":"optional","installed_size":338816,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"9ab4f42422cc0a05edb15b77e86a6ce02a81723fa78cccb88cd050252d63bb91","size":127189952,"filename":"pool/main/m/mdatp/mdatp_101.23052.0009.amd64.deb"},{"package":"osconfig","version":"1.0.5.2023013001","architecture":"amd64","section":"devel","priority":"optional","installed_size":5153,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"52ba97e9735618903e85a50294eef44fa930ee476077d7416a4e7bc2ef40f1fa","size":1851528,"filename":"pool/main/o/osconfig/osconfig_1.0.5.2023013001_focal_x86_64.deb"},{"package":"sysmonforlinux","version":"1.2.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","sysinternalsebpf (>= 1.2.0)"],"sha256":"39e135f6689b247a432965a4637d4ef33b8e247185a84b6e22bb88cf85f941f3","size":1763970,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.2.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4484-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"607fe4f1b916dc219c50db78982467537da3ff06c52419690be4be120dec1800","size":211180224,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4484-1.deb"},{"package":"azure-ai-vision-dev-common","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":759,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Developer Package","depends":["azure-ai-vision-runtime-common","azure-ai-vision-runtime-common-media"],"sha256":"d20d401ffd04570d660e9519f01856af426e76e43bb0dc881e02089375f77b1e","size":114856,"filename":"pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.13.0~beta.1-Linux.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337378,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.412","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.20)","dotnet-apphost-pack-6.0 (>= 6.0.20)","dotnet-runtime-6.0 (>= 6.0.20)","aspnetcore-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"dd362800c334d523de07ad66ee417fc7bfb3719fae9e47a6db056bc550a0f071","size":86785310,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.412-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.20 2.1.20","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.20)","libc6"],"sha256":"f39bd912468456be7292f870fdff2c06fa5f89117d240e2b4ef8362a5b3d1005","size":143576,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.20-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.25 Microsoft.NETCore.App 3.1.25","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.25)","dotnet-runtime-deps-3.1 (>= 3.1.25)"],"sha256":"a0d0d0fbbab9b9daf11923e9cbaa91f9501881a2a71235ae79038d8f46cc928c","size":21306090,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.25-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":86958,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"1f0df1f218007cb1f051cc4fd80e79ae38a1a9641be0fa71ae2f754023bea6b5","size":20689626,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u2_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":126664,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0bdc48a71d6515f866fedbd9aef11869979c3fbb1aac470b1ca8a4a366025d20","size":47817962,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.3-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"a76ec8cf376965a2fd15d5e058801940fea64b84d1d1806bb27d647b8d26b25c","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.22-x64.deb"},{"package":"msopenjdk-17","version":"17.0.4-1","architecture":"amd64","section":"java","priority":"extra","installed_size":323723,"maintainer":"Microsoft","description":"OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"9a19875d9ceb75e0a53b8d891e251d2f3e3b5e8fe2d8212958dbfae9d9a6fcb5","size":191767862,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4-1_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"ebffdfbece2e6a15cb8ca36681eb25fe4af0cc3a0914b468c97f5dde27b1cf1a","size":2642,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.2-x64.deb"},{"package":"codespaces","version":"1.0.2705","architecture":"amd64","section":"devel","priority":"extra","installed_size":94759,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"f7d3d255d28501e3b044c629a5f5c124481d1752e2d57dc3f3e8a09f08cc6a01","size":27038796,"filename":"pool/main/c/codespaces/codespaces_1.0.2705_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.15","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"fdab3fb00d13808ecfbfc38615abdbfd719852aac2af5244d4d96f650fd7a6d8","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.15-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70794,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.3","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.3)","dotnet-hostfxr-7.0 (>= 7.0.3)"],"sha256":"872025cfc583a1011dfcab995b870b320c02ac0bb639fef2473da68193d04de1","size":23196546,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.3-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.413-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.413","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"6f9a124784e3653bd9e94ca6e5a6bb334876bc0c8c311c6ba9b8f56378175576","size":86794698,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.413-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":9002,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-3.1 (>= 3.1.0)"],"sha256":"44ad702805647f92be8eb885950c28ab5bfc886b5c27a7106adf069acc3436ba","size":950516,"filename":"pool/main/a/aspnetcore-targeting-pack-3.1/aspnetcore-targeting-pack-3.1.8.deb"},{"package":"dotnet-host","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.28","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"caa3845eeafc6c216ba279ff4646785cf2fa433e7927a3183cf89083dfdbfd35","size":32472,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.28-x64.deb"},{"package":"azure-ai-vision-runtime-core","version":"0.10.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":2602,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Core Runtime Package","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.3.1)","libstdc++6 (>= 6)","libuuid1 (>= 2.16)"],"sha256":"115f317b11d6b989cb7e2ca91a93378e72e1c0dd5c66b0b6e3302ba185756356","size":647158,"filename":"pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.10.0~beta.1-Linux.deb"},{"package":"azcmagent","version":"1.1.20287.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"046ccbd2a8fc63e22f6c1e35ea12d4cf7989680f43ebb1f884ec485797248266","size":18254798,"filename":"pool/main/a/azcmagent/azcmagent_1.1.20287.003_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.1)"],"sha256":"c085c0275e7e0a416d98c5514c08e43e1842f20f97f5d7bc2f1b647f442375fe","size":1496790,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.1-x64.deb"},{"package":"procdump","version":"2.2-17219","architecture":"amd64","section":"devel","priority":"optional","installed_size":10747,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"3c7d9ee6832a137f4f0a331bc0c9e002f544df6f90c38f878203432e70f78320","size":1649314,"filename":"pool/main/p/procdump/procdump_2.2-17219_amd64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"767a00e324ffcc296021afd1aecdb3263cbab0d79bdc33dbeadc4925f1967215","size":2666,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.21-ubuntu.14.04-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"e5638610bf3a4a5a45029e91edba0ecc1a6d45d25e733014a4a1ffe927a34aaa","size":2569446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.8-x64.deb"},{"package":"moby-buildx","version":"0.8.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"75b1a3ddf85ec693e210a5c1c95520e0bd0daad97855b83e71d1189036e7e8a6","size":23115808,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.1+azure-1_amd64.deb"},{"package":"aadlogin","version":"1.0.014460002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["uuid-runtime","libcurl4","openssh-server"],"sha256":"f0ce33c696ef3e43db1863ece443bd9cf05a147e9ee1895de7a8bf02c10f89e2","size":408454,"filename":"pool/main/a/aadlogin/aadlogin_1.0.014460002_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68328,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.4 Microsoft.NETCore.App 5.0.4","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.4)","dotnet-hostfxr-5.0 (>= 5.0.4)"],"sha256":"23b35e8f0806da0400692a6fccced60b646c963f670b4d4f0afc611741b61e53","size":21666482,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.4-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b5292e77dea925f8f42cebefed36456b7d445550667e4e2f10c421800243eaf3","size":2802,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.11-x64.deb"},{"package":"moby-runc","version":"1.1.6+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":13388,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"13a329ff5144bea7a53279c7817d93ecaa809b54fe6fb3446271a801ecbf2f75","size":5765270,"filename":"pool/main/m/moby-runc/moby-runc_1.1.6+azure-ubuntu20.04u1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2931-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"24469122e8d18f39a1cd81536e686e64a4db72023381f7e6100aa28dbf46843c","size":189901280,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2931-1.deb"},{"package":"azure-functions-core-tools","version":"3.0.4585-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"77c33e5cc79a5e787f2ea52d4ed1d5b488fa1b8a75bac71f89aa7dbb66884172","size":224546532,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4585-1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.204-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222063,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.204","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.7)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.7)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.7)"],"sha256":"f201477cbd121fc19972135c96df8cad66f1d032cd6674b3cfe7bfb3dbfd7a30","size":57052168,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.204-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2798-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"1180664cb2b0443c917020035cbc9afbe6c2f0eb02b44b368fdaa06b6e9c9ca1","size":199570824,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2798-1.deb"},{"package":"azcmagent","version":"1.5.21103.012","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"ae286b111045800a34714dd0c235ad2c1332f0427cd9d4efb20bbf8b966b77c6","size":18200878,"filename":"pool/main/a/azcmagent/azcmagent_1.5.21103.012_amd64.deb"},{"package":"blobfuse","version":"1.3.4","architecture":"amd64","section":"devel","priority":"optional","installed_size":32299,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.4 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"4f2cdf1424188cef2f2c9d84056518a1aa605f70418cfa49db413378f3828dff","size":9275670,"filename":"pool/main/b/blobfuse/blobfuse-1.3.4-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.14","homepage":"https://github.com/dotnet/core","sha256":"90ef0d4bdf9275dbf138490bd2fc308d7291ea1c4cca4428b518c9d34f9235be","size":3412096,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.14-x64.deb"},{"package":"dotnet-host","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.10","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4f6f7c2d47dfb5611daa5362c784b4a3132643affa2af8eea2d73d2c616ebe3a","size":32848,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.10-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.15-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.15)"],"sha256":"1ba5241e0921b49c5b79ca6352cb9471c9f52404fc781d619d0c500af9309853","size":5771540,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.207-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222088,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.207","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.10)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.10)"],"sha256":"d1bc258e7ce50cf0032c1599dc4953b2d3053a25b70c55999294148142cf144b","size":57439210,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.207-x64.deb"},{"package":"unixodbc-dev","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"devel","priority":"extra","installed_size":1698,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC libraries for UNIX (development files)","homepage":"http://www.unixodbc.org/","conflicts":["libiodbc2-dev","remembrance-agent (<< 2.11-4)"],"depends":["unixodbc (= 2.3.11)","odbcinst1debian2 (= 2.3.11)","libltdl3-dev"],"sha256":"af92e472b5811d93ee143d74f84e36035d54e879c3e983c20c1ce831ed3c2661","size":42092,"filename":"pool/main/u/unixodbc/unixodbc-dev_2.3.11_amd64.deb"},{"package":"powershell-preview","version":"7.3.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":192266,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a3aee968950be1b9dc7e8900ce2ac8537cc349dbb5f8c9ec4147ae5d6c704a1","size":69296044,"filename":"pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.8-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.23 2.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.23)","libc6"],"sha256":"19334631da0ccb215cf05921be73263251b86a3928a49b22dfd2eb3a316c4233","size":143478,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.23-x64.deb"},{"package":"osconfig","version":"1.0.3.2022061604","architecture":"amd64","section":"devel","priority":"optional","installed_size":5338,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"b90f458ed9a31c68751e7c911339b88f26934637f15f0c4668a74b83d1f5a8c8","size":1873930,"filename":"pool/main/o/osconfig/osconfig_1.0.3.2022061604_focal_x86_64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":46224,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"d17612518e9da1676b1d7ca4e4a5c34cdf0112034e2147c84c6c968f47d5ef8e","size":10168922,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.17 Microsoft.NETCore.App 3.1.17","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.17)","dotnet-runtime-deps-3.1 (>= 3.1.17)"],"sha256":"a77fe36f2576b841a6c97d8ff34fe371b3a5e99d5dcca6e7857ddd8e8f644b12","size":22014644,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.17-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.10 5.0.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.10)","libc6"],"sha256":"d3b59efb3cacce21964eaed142cfddcf9ee089bc03be959f6668cf782f85ab42","size":140290,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.10-x64.deb"},{"package":"moby-containerd","version":"1.4.9+azure-3","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"0cf41bd4984948cf0efeef593c8455ef9085dfc7797ceac09c93a32d5d633588","size":26991484,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.9+azure-3_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.0)"],"sha256":"7afb956081476567eaf4cfc501d80e36f45e7f5cfa632b9bd3f5ae11164498ef","size":6597988,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.0-x64.deb"},{"package":"deliveryoptimization-agent","version":"1.0.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":412,"maintainer":"docloss@microsoft.com","description":"Delivery Optimization downloader with Microsoft Connected Cache support","directly_contact_us":"<docloss@microsoft.com>","homepage":"https://github.com/microsoft/do-client","depends":["libboost-filesystem1.71.0","libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libgcc-s1 (>= 3.0)","libproxy1v5 (>= 0.4.14)","libstdc++6 (>= 9)"],"sha256":"03b6bf32043878a8795761446606057d6ebc4b983189e373e11f98d4ecdcdd7a","size":163448,"filename":"pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.0.0_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70844,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.13","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.13)","dotnet-hostfxr-7.0 (>= 7.0.13)"],"sha256":"8e1eddfe95f1ff945a99e4a7320e89168791bef823d2c208a94fa337198ab7af","size":23207954,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.13-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.412-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.412","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.18)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.18)","aspnetcore-runtime-3.1 (>= 3.1.18)"],"sha256":"9552616ce32bdb1cb508912f5a1658fb837908f5a8683a4dfe218c96afeb7e72","size":48448546,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.412-x64.deb"},{"package":"dotnet-host","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.23","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b09d6cde7441c2eaff5b52f2946dbd20f13c27277b7882b083db362c5c982ab4","size":55798,"filename":"pool/main/d/dotnet-host/dotnet-host_6.0.23-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.119-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.119","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.19)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.19)","aspnetcore-runtime-3.1 (>= 3.1.19)"],"sha256":"b86c178e4a12c74704dcf88ce50509c5464abb2f0cb5647d42285851814ead77","size":44221936,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.119-x64.deb"},{"package":"moby-containerd","version":"1.5.14+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":107149,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"ae122dadaf5ec4af7b7eb176cd30cd25f304b7bc3ab375fe98a0c4a4d195a652","size":26328750,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.14+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.6.21132.003","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"7848a2e2af66bf781f9ed6e97383d75c91572e8ae78507411d46a15a9b2dfaf2","size":18393252,"filename":"pool/main/a/azcmagent/azcmagent_1.6.21132.003_amd64.deb"},{"package":"moby-engine","version":"23.0.7+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97192,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3b00225c2da675b9aec9bb564c96f28f1324e1e0b811d85a9f92258982cc68f4","size":22796342,"filename":"pool/main/m/moby-engine/moby-engine_23.0.7+azure-ubuntu20.04u1_amd64.deb"},{"package":"defender-iot-micro-agent-edge","source":"Microsoft","version":"3.6.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8"],"sha256":"1cbb09e808628fc0f6b3c8d4190bdf72aa4abeae6bee553fb279eaf530f3d5ca","size":247000,"filename":"pool/main/M/Microsoft/defenderiot-ubuntu-20.04-amd64-edge-3.6.1.deb"},{"package":"odbcinst1debian2","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":242,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Support library for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["libiodbc2","libmyodbc (<< 5.1.6-2)","odbc-postgresql (<< 1:09.00.0310-1.1)","tdsodbc (<< 0.82-8)"],"conflicts":["odbcinst1","odbcinst1debian1"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)","odbcinst (>= 2.3.11)"],"replaces":["unixodbc (<< 2.3.11)"],"sha256":"40054404658f583020b4fbbe0457de6cfd4b0fbe4bf0ee29f1f7ea0489023d5b","size":99742,"filename":"pool/main/u/unixodbc/odbcinst1debian2_2.3.11_amd64.deb"},{"package":"moby-containerd","version":"1.6.16+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":123874,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"2d48ceb4e5a1342de32c5ff1b522eead21f1738d782785a3469b18087d69e815","size":30983354,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.16+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.202-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":320277,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.202","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"9c772c540a3c0f2d381f43e8c957d125bc60eaaac26bc03df64af37c16b295a9","size":80345074,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.202-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.3","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"2c6cfbcac249976eb38350d6ab9bc5ca5b7e24f9912fb16b0ac5183439d03a06","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.3-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17501,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.13)"],"sha256":"715b47ec285b237f848de3812c6ade82e8e145506742445e4e15679a94a3d3e8","size":5770616,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.13-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189425,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.9)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.9)","aspnetcore-runtime-3.1 (>= 3.1.9)"],"sha256":"0e13c8b61406fd33189984cdf15825163d9ad9efdd6ff0eee3a59f1a9f87602a","size":47662712,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.403-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71110,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.13 Microsoft.NETCore.App 3.1.13","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.13)","dotnet-runtime-deps-3.1 (>= 3.1.13)"],"sha256":"e68e3308a9fb85ab39ed98538604c0f55f7906176aee67cd2ea965b744ca97c4","size":21727966,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.13-x64.deb"},{"package":"aadsshlogin","version":"1.0.022090001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"27ebc6dbdfbacb230152da41b1fc87b66a5b37a8f3b72d3def70de0c249906af","size":283634,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.022090001_amd64.deb"},{"package":"dotnet-host","version":"3.1.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.12","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"aff93d6991b1b40fe3cf237917bbcfe051796b8499d0109d601449fb05cc2f92","size":32874,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.12-x64.deb"},{"package":"azcmagent","version":"1.18.01965.166","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"6222db0bc7e2b874193d109b88d420ad3f39198caa0d013a314e1ee43763c739","size":52442524,"filename":"pool/main/a/azcmagent/azcmagent_1.18.01965.166_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":403061,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.403","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"02fc8659df6b8072d12a3fe4757d0e75c91ef0f4829edd926f0766737c5d315d","size":108194782,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.403-1_amd64.deb"},{"package":"moby-engine","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106338,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"05a18fb71276a063f8a6f2ca216bbe3cd6cb2bf1731ebb1ac34292d4b8e6d23c","size":22708988,"filename":"pool/main/m/moby-engine/moby-engine_19.03.14+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312591,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.104","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.4)","dotnet-apphost-pack-6.0 (>= 6.0.4)","dotnet-runtime-6.0 (>= 6.0.4)","aspnetcore-targeting-pack-6.0 (>= 6.0.4)"],"sha256":"966102b1975f5a371ec6e70fc87181846d1ee81bd4eb4747a439cfde6b840022","size":77930174,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.104-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5274-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c6a06548c60acd80cbeae521682d0257bf2d19e04c8b830246ad966b9e7a19c9","size":156768584,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5274-1.deb"},{"package":"sysinternalsebpf","version":"1.1.1","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"1dd9e60dfefcc67a0617b864467b91237043d0ec1bff053d6d09a147aa33bcdd","size":675114,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.1-0_amd64.deb"},{"package":"iotedge","version":"1.1.11-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":22406,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Security Daemon","homepage":"https://github.com/azure/iotedge","depends":["libc6 (>= 2.18)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0)","adduser","ca-certificates","hostname","libiothsm-std (= 1.1.11-1)","sed"],"sha256":"b307e4f510a3425f3d3282ad0763db7cc7bd1360e41f3dc3548ee8f033c0b1c5","size":5366952,"filename":"pool/main/i/iotedge/iotedge_1.1.11-1_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":501,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-core","azure-ai-vision-runtime-image-analysis"],"sha256":"2c5191dbe6fd403b2602052e8c8eec335fe79b4a12587ea32cb22d39a9cd8331","size":77352,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"moby-containerd","version":"1.6.21+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":125669,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"166445aebcd9332fa928bafcd666cee7e4e8d59b126b602d055dc76253d2381c","size":31518918,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu20.04u3_amd64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31138,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.11","homepage":"https://github.com/dotnet/core","sha256":"0abf0aea546c03a27a2948b0ef5f51f2eb6120b39dce94983a2f214249c7b7b1","size":2568446,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.11-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7e9cf6178ae45f187173f1f806e1889cbcf87fa9e55fb4658ff1ef0617d2de25","size":68352544,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-host","version":"7.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.9","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"4c6621e18fbc3baf2ba5a45334b8b86073e0a3a3afc20af7df539d34c3e4e833","size":57178,"filename":"pool/main/d/dotnet-host/dotnet-host-7.0.9-x64.deb"},{"package":"dotnet-host","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.15","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"2d084d26ada01ddc7eb08809dd498002f112670c8aee58b122200cce86a8ac00","size":55902,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.023850001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libc6 (>= 2.25)","libcurl4 (>= 7.16.2)","libpam0g (>= 0.99.7.1)","libselinux1 (>= 2.0.65)","libsemanage1 (>= 2.0.32)","libssl1.1 (>= 1.1.0)","libuuid1 (>= 2.16)","passwd","openssh-server (>=6.9)"],"pre_depends":["grep","sed"],"sha256":"c9c89c8d6d55e1887e3fc8b15252850095c7ad10c19bcc78d1fc21c729c4a163","size":287578,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_amd64.deb"},{"package":"mdatp","version":"101.60.93","architecture":"amd64","section":"devel","priority":"optional","installed_size":207852,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter","perl"],"sha256":"9faf6bf463dcd6cb467eb3b887b9f5af1d7c5a0e05126b989f5c7c640db84567","size":60945336,"filename":"pool/main/m/mdatp/mdatp_101.60.93.amd64.deb"},{"package":"azcmagent","version":"1.24.02147.540","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"572a26cd0e32a9d21ad0c6df406349110bde36150426e0f78a2bc84f532f51dc","size":53624042,"filename":"pool/main/a/azcmagent/azcmagent_1.24.02147.540_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.8","homepage":"https://github.com/dotnet/core","sha256":"5a6723aa7323f676d0ec8465fe3b602fd6cf8adeb4eb3116811624a140b876ac","size":42452,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.8-x64.deb"},{"package":"azure-ai-vision-runtime-common-media","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":16458,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Common Components Media Runtime Package","depends":["azure-ai-vision-runtime-common (= 0.11.1~beta.1)"],"sha256":"8e7550023fbc57e74b2c137731f2dedf9dc8c0fc1b106b9d051e0dba8e97e862","size":5099542,"filename":"pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.11.1~beta.1-Linux.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.31 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.31)","libc6"],"sha256":"56ef9743de9e2daf7a37873c7d8df3b022354219ec5f8f53a7a5c02138ac405f","size":120744,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.31-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.406-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337159,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.406","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.14)","dotnet-apphost-pack-6.0 (>= 6.0.14)","dotnet-runtime-6.0 (>= 6.0.14)","aspnetcore-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"6f0964aa293e16b62a09a7c9729f03739dd5f5580702abafa2836d02bec26014","size":86710362,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.406-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68460,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.18","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.18)","dotnet-runtime-deps-6.0 (>= 6.0.18)"],"sha256":"bebae5e400edcf0dde125ac0be4a050443701904abc62d951097ea836865b347","size":23003214,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.18-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.16","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"becf3010aa8513fac0cbdaaf3173b2fc4363c1d6e8edf0b0db6762c3f8fbc640","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.16-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.17 5.0.17","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.17)","libc6"],"sha256":"5a5023c3892045065a46cb3487fb406bfb297e57aa4f7187cdeaa64181e4d82c","size":140426,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.17-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.7)"],"sha256":"5c60c0e32b4411b290d7a0169ef42fde0207876aead9fbbf9b42741bc27e12de","size":6606224,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.2","homepage":"https://github.com/dotnet/core","sha256":"9608dfd66efa12ac140fd22d6b0ae1b83d324bcd0b6a5f17aa744177ea3d5140","size":3517494,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.2-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.12","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"87618b484f3f331246a154bd7f60d37cfd9886a5a387b60040c554ebd698ae38","size":2644,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.12-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.23)","libc6"],"sha256":"b0fd147129b2e43d6f372e0ec8672e9b240b80972102582921b829282cc7bdf2","size":142344,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.23-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.6-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.6)"],"sha256":"fec1c17c7c876314684490ca6a0b6dee6a6c4113d5116e7a8cdce9bec436f8f0","size":5766564,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.6-x64.deb"},{"package":"aziot-edge","version":"1.3.0-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17499,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.3.0-1)","sed"],"sha256":"26d6e671ead2589047577db8abb90fa908d34c8431346bb6ceef761b546f7d08","size":4123540,"filename":"pool/main/a/aziot-edge/aziot-edge_1.3.0-1_amd64.deb"},{"package":"codespaces","version":"1.0.2579","architecture":"amd64","section":"devel","priority":"extra","installed_size":94383,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"de7608b5adef8a63f576ea96802f680897932e37f8d63435f586c2442e5a2ebe","size":27042980,"filename":"pool/main/c/codespaces/codespaces_1.0.2579_amd64.deb"},{"package":"moby-buildx","version":"0.5.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59965,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"6010b29f27c571b60622ed6a8e11df33fd1630238ba3158454d60426db674df9","size":20595128,"filename":"pool/main/m/moby-buildx/moby-buildx_0.5.1+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19878,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.19)"],"sha256":"a5542d3b15bb4cf1dcd16c3a80da543e0bbeabba37be690758d5e3d8c3af69a2","size":6613598,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.19-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19868,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.10)"],"sha256":"ac987094f8faae67945a87a069a49e989972c16ca7cc9612fd2d5bfc739b9832","size":6609196,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.10-x64.deb"},{"package":"open-enclave","version":"0.18.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":122140,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"6f526e67a6e04bd738ed8460f43ff18ad6f98742cc30782c66aa5e77b47237c6","size":33277610,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.19-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317712,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"5dd9d213017e1885ba6031e313ee2a7fc4779f757e08de981cee0afbbc318a31","size":194122530,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.19-1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.32","architecture":"amd64","section":"devel","priority":"optional","installed_size":97,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"81fddeaeddf948e1b22963d5c9fb48d50368a5f8d7c208814726b546f31d2105","size":25252,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.32.amd64.deb"},{"package":"procdump","version":"2.0-16795","architecture":"amd64","section":"devel","priority":"optional","installed_size":10696,"maintainer":"OSS Tooling Dev Team ","description":"Sysinternals process dump utility","homepage":"https://github.com/Microsoft/ProcDump-for-Linux","depends":["gdb (>= 7.6.1)","libc6"],"sha256":"f69c54d78708b84c27e90600fbc50a11392b384a92acb18e522d236d38113a61","size":1645762,"filename":"pool/main/p/procdump/procdump_2.0-16795_amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.16","homepage":"https://github.com/dotnet/core","sha256":"a2f0195941608d63d37b1e982dcba2093632e5110761eeaebb8a420789439188","size":42294,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.16-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.7","homepage":"https://github.com/dotnet/core","sha256":"d26aa9f96af6dd3fee9bd9e45e6520e31920bf3850eb872956da82a508c9dcbf","size":42692,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.7-x64.deb"},{"package":"aztfexport","version":"0.13.1","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"06e37c42e9ad8c3c14e99616d7a2f4ec05110017d81828bd93d5cab8663d5619","size":11882146,"filename":"pool/main/a/aztfexport/aztfexport_0.13.1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.2","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.2)","libc6"],"sha256":"835aa82ef1cd149f912a69a997286c5e44fbb2dec8c7ae5343cdf76d3afee16f","size":143898,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.2-x64.deb"},{"package":"dotnet-runtime-deps-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-2.1 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","liblttng-ust0","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"8a2133041f7d9a6ee5ba65f79a4e146dab634865237b86cb9c4f15811e5571f9","size":2652,"filename":"pool/main/d/dotnet-runtime-deps-2.1/dotnet-runtime-deps-2.1.22-ubuntu.14.04-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.16","homepage":"https://github.com/dotnet/core","sha256":"ae49980e30d863cba720f34bfab96db9cb6966c22cb773685617c6f47b5175cb","size":3418406,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.16-x64.deb"},{"package":"msodbcsql17","version":"17.6.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)"],"sha256":"e8b30d2949b6c5411825eab7996630498b5b9aa8a4f4affdeaa204fc07c0c15a","size":743228,"filename":"pool/main/m/msodbcsql17/msodbcsql17_17.6.1.1-1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17468,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.9)"],"sha256":"5f4d6ca15089702f0247a710cddd9a99ff15a7129b1b3a98e692b6af500818dd","size":5768454,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.9-x64.deb"},{"package":"mdatp","version":"101.94.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":301191,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"03edc9a54c09ababa41a5f3886a3af2e1114b96c10cdf22eb2bd6c344758ed68","size":117484794,"filename":"pool/main/m/mdatp/mdatp_101.94.13.amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.017820002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"6cc25729cc609a73d6aaf7940d0a2b66a6ed1d6414260343739fe5c10d863bce","size":1836,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.017820002_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.104-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":213643,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.104","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.4)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.4)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.4)"],"sha256":"282746eaaf7422e389c9f2ab44aa148223c2d96e1febbaffebe86d822c77527f","size":54843396,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.104-x64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68342,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.11 Microsoft.NETCore.App 5.0.11","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.11)","dotnet-hostfxr-5.0 (>= 5.0.11)"],"sha256":"7bfb09b4a2578ead902561fe49319372f503ed5957daddb04ba30588f21a266f","size":21471080,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.11-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.29","homepage":"https://github.com/dotnet/core","sha256":"88479611946f8cd8c44c834899a935d356d2b6baca8d6ea9d7a2ee0e00c23f7f","size":42066,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.29-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10815,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.15","homepage":"https://github.com/dotnet/core","sha256":"99b72ef9f7882df88cebf3fb864c74a7ab6b42545cdfa2eaf92bbbfdd541544c","size":3415008,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.15-x64.deb"},{"package":"aadsshlogin","version":"1.0.018440002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"0379d716bb7bfe19bca7742d179ad1d15037c9ac15425b6978bd20d28c2d0ee2","size":420006,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.018440002_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.4","homepage":"https://github.com/dotnet/core","sha256":"3ca5ea3cd2a93dadf7e96b86ffbe70c8bf568f03337c8b0150503435da5722b3","size":3413198,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.4-x64.deb"},{"package":"azcmagent","version":"1.28.02260.736","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3c15e96bd33a66432e397062305c47f62d7e29cb1daca0984e5c8e7d01e51a43","size":53738666,"filename":"pool/main/a/azcmagent/azcmagent_1.28.02260.736_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.2)"],"sha256":"ec0cdcc4cf6ff7aa4f9709cd7b7f1c8177ae4a01acd69b9ca53d1cc924c0826f","size":1516930,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.2-x64.deb"},{"package":"acms-client","version":"5.25","architecture":"amd64","priority":"extra","maintainer":"dsmsdev","description":"ACMS client for dSMS","depends":["curl","libcurl4","libacl1","libuuid1","libxml2","gnupg"],"sha256":"51f54b378f67bd2fae11cadebb6da932d3af9c857f5802b69eede907d5d15b2d","size":984602,"filename":"pool/main/a/acms-client/acms-client-5.25_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.11","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"bff2289dfed0fb7f90d969d5bef78ce3dae4ec3c845d4547e315b3e74e018b8f","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.11-x64.deb"},{"package":"mdatp","version":"101.45.13","architecture":"amd64","section":"devel","priority":"optional","installed_size":162513,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","mde-netfilter"],"sha256":"135aaef60f21e0bc01e5705e4d42ad8a6f2551718b6d51f4bb5aef41e2650f4f","size":47102476,"filename":"pool/main/m/mdatp/mdatp_101.45.13.amd64.deb"},{"package":"dotnet-host","version":"2.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.25","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"9fae6c1552491f0df64c060a52d6a631582aeee38bfc5597edca6643c1b2d915","size":36630,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.25-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68406,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.10","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.10)","dotnet-runtime-deps-6.0 (>= 6.0.10)"],"sha256":"25d420ba348172b128109c37e20790dda6d089a335c200635667f52362d8ccb9","size":23009270,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.10-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19860,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.8)"],"sha256":"fe093d8c965519050ec012a273b54e80590c38b214e9f98ddeadd10d89a615e6","size":6605452,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.8-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"65b5db317c082fc2faa9894915697e991014e253c9eda7505f06fa19bff49094","size":2686,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.26-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e8a462ade9d000c63ea23567d2c0f3ff1d44755e9827adb7e249dca5efc787f3","size":167356368,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.3188-1.deb"},{"package":"dotnet-host","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":246,"maintainer":".NET Team ","description":"Microsoft .NET Host - 7.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"e47b8abe42da934b27969dd4385546e97f8c2c09d83ff3bceb0e28e7ef15d5dd","size":57218,"filename":"pool/main/d/dotnet-host/dotnet-host_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11724,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.7)"],"sha256":"05b8dbac0076ac80c1abae45fe66cd04a9ff9e621b22efdfe45fd5301826708a","size":1306680,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.7-x64.deb"},{"package":"dotnet-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":31135,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 7.0.5","homepage":"https://github.com/dotnet/core","sha256":"c404c8d4a732f60814a1cd15730e7f38cbeac70aa46e936dbe8ee7a6c20b1755","size":2567646,"filename":"pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.5-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11749,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"900d02b0c6113ac51a2410488ef4f46f6fd1b438f18e5c83a0919ab645622d2c","size":1315550,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.21-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.5-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13092,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.5)"],"sha256":"d04d176d380a33e36e3588f7855317213ecd0020decd6326d5bd6076401ddfa0","size":1513034,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.5-x64.deb"},{"package":"powershell-lts","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"1c0cb7aab087fa409889a0da328d16c3f2cf97d848d329142bdd3deb1b1e8e05","size":70340358,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"1.11.21253.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"04a8677f6b2b2a7369f174dab1fc369e2e060bdef902ad00973de3fd6402a068","size":49555540,"filename":"pool/main/a/azcmagent/azcmagent_1.11.21253.002_amd64.deb"},{"package":"moby-engine","version":"19.03.11+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":103373,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.2)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"7a951c2a0612ea1c189cab2f2279fa0628b0fc37077de48b6ccba00ddebc4a89","size":22526996,"filename":"pool/main/m/moby-engine/moby-engine_19.03.11+azure-2_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.307-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331351,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.307","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.12)","dotnet-apphost-pack-6.0 (>= 6.0.12)","dotnet-runtime-6.0 (>= 6.0.12)","aspnetcore-targeting-pack-6.0 (>= 6.0.12)"],"sha256":"cbd5a89006370129d484ecb59bcff70b18644c2bfef2da621834a0d02d15721d","size":85122482,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.307-x64.deb"},{"package":"dotnet-host","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a8914e4e15052ff97b39824900a87f0538d3d5d56afeac61c380149294493c5e","size":52532,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.17-x64.deb"},{"package":"msalsdk-dbusclient","version":"1.0.1","architecture":"amd64","section":"utils","priority":"optional","installed_size":46,"maintainer":"Identity Client Linux Team ","description":"Microsoft Authentication Library cross platform","homepage":"https://github.com/AzureAD/microsoft-authentication-library-for-cpp","depends":["microsoft-identity-broker (>= 1.2)","libc6 (>= 2.14)","libgcc-s1 (>= 3.0)","libsdbus-c++0 (>= 0.8.3)","libstdc++6 (>= 6)"],"sha256":"d1d1eee986c6181db1937e2a44eeb32f0c53aa5f1397c978f06f0ad15d147c50","size":9930,"filename":"pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.1_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.5","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"30084161440d7cc15252df8e8cb53c6e653147e16de3df7b1ee25102a2bd251c","size":2664,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.5-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17460,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.7)"],"sha256":"6ed9010d53b22a0086294c5384801605284bef8d1e2a3429d5877dd6a4e9449b","size":5767600,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.7-x64.deb"},{"package":"dotnet-host","version":"2.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"b7b4745302630fe0cf936c6e1b1eef87cf29db06de5a03d62b4196e472d5e305","size":36580,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.26-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc93+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":19335,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ad97bc60927a1ee6045cb2db4bb36b983bc8f18092f82eebdb0b7f8085a65794","size":6436176,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc93+azure-1_amd64.deb"},{"package":"kevlar-repokey-test","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-prod"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-prod"],"sha256":"c7ff8b5f9532cb585cb50aea395535024cb9934c7e1219e3261f91f639543673","size":2500,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-test_1.1-1_amd64.deb"},{"package":"servicefabric","version":"9.0.1056.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["lttng-tools","lttng-modules-dkms","liblttng-ust0","openssh-server","sshpass","members","libunwind8","libib-util","acl","libssh2-1","nodejs","npm","atop","dotnet-runtime-3.1","cgroup-tools","ebtables","libelf-dev","zulu-8-azure-jdk","software-properties-common","curl"],"sha256":"72bdf3c72584eead823b7588b371262ea28b09d7d884ceb895abe84fff3f32c9","size":226518346,"filename":"pool/main/s/servicefabric/servicefabric_9.0.1056.1.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.22","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.22)","libc6"],"sha256":"c5a1b053ad7cbd575809bbfab15fce0bd2ada12876d7a65583c441f0d95e311c","size":142392,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.22-1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.022600002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"e0a9923e22f6202245812d62a3cca02b524127bc7ed77840ad5d58ee33b8afb7","size":2378,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022600002_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.17-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317445,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"ca210b6bd54ec06e3f7bea285b80df66e2054aa438b97b3a63223c8cf65701aa","size":193991608,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.17-1_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.200-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222334,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.200","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.3)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.3)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.3)"],"sha256":"54ad60c1a3413fcbfb5c9490adeb39a8884935b7dbc30324f279ba4091fee6d7","size":57258152,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.200-x64.deb"},{"package":"aziot-identity-service","version":"1.4.0-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18065,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"51f980280e4b34d1398bb78f0227cc020aa41cd19356346afafb21f24d6ad124","size":3862532,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.0-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186934,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"012eb465df8a50284c49d0e37940e4bb84a88600094c7b706e5b15ef724c1333","size":69447560,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.8-1.deb_amd64.deb"},{"package":"blobfuse2","version":"2.0.0-preview.4","architecture":"amd64","section":"default","priority":"extra","installed_size":27858,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse"],"vendor":"none","license":"unknown","sha256":"bf244b9c2ef285d31785405e1d6a9ef97b177952dace823330f8048e65012736","size":13148292,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.4-Ubuntu-20.04-x86-64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.11","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.11)","libc6"],"sha256":"11d2256fef69f75655ff54b6efaa710980f7497d1ee213953881753cc4ec6be1","size":142394,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.11-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17498,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.25)"],"sha256":"b3de39c43b81423eaeb7b2b4821152495d7e2c35461e3c1d089c4f2579930be3","size":5772068,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.25-x64.deb"},{"package":"powershell-lts","version":"7.2.3-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":186998,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"0ee622ed63628b45ecd297847d068fd0f9ce6675cf82bc19c83f6bf89afe1791","size":69415978,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.3-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.8-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160411,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"cb98c746e36a959a3fc1be9fd03ee2eba47d0f1ceebd3a6bb4a9b2afd91aedea","size":64879422,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.8-1.deb_amd64.deb"},{"package":"mdatp","version":"101.29.64","architecture":"amd64","section":"devel","priority":"optional","installed_size":148771,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d584e20c8fefa3ba05135655f2416365e99fa078568a3144226eb592a935bd4e","size":43943754,"filename":"pool/main/m/mdatp/mdatp_101.29.64.amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.8 3.1.8","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.8)","libc6"],"sha256":"ac92bef47efbbde3ea36ca981cad17f3abde3b8145fb79dad3ec86d2f7a3365d","size":121050,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.8-x64.deb"},{"package":"moby-containerd","version":"1.5.13+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"a582fa1a887fd86b3f89437139fed370f37f8e1308581ca7ae2b9f609d4d9add","size":25986352,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.10","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"ec63ccc3628fd4e5e8013bddae353225110503aa7786fd6d9c1509aad2af3f2c","size":55874,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.10-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.5","homepage":"https://github.com/dotnet/core","sha256":"cd48ff631f943efeb568d7434e11095a4523a5ed11c26ad893c1640385ee15d4","size":42722,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.5-x64.deb"},{"package":"msopenjdk-11","version":"11.0.16-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316874,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f5b62099a636f842c0e90a9103c58fabb5c7784c94fd98d44161755b36e260ff","size":193647354,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16-1_amd64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.9.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":680,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core (= 0.9.0~beta.1)","azure-ai-vision-runtime-core-media (= 0.9.0~beta.1)"],"sha256":"ede9b0fd7cc154335a4a8c0e38326e8584d2f571a20e826f5eab08d2764e27e6","size":148154,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.9.0~beta.1-Linux.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.1.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"d5a34d329b246897fad6bb370f397682cc40e40ee6a331530beaa6dbfbdadc0b","size":361020,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.1.2.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.21 3.1.21","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.21)","libc6"],"sha256":"b64dbaf4efff1814b6653808020f98b1b0008f323af9a84fcf771e972d624b78","size":120854,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.21-x64.deb"},{"package":"moby-cli","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":70534,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"56c45f3c9cf67943f5e2ea6a1d3b51eb7fb64437b6404c6b53e21e99a369f6f7","size":12155328,"filename":"pool/main/m/moby-cli/moby-cli_19.03.15+azure-1_amd64.deb"},{"package":"powershell","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"27ac4fa4f3e7f0934afb4883df21e572b3d9650e17221d0f3f288f250a92dbc9","size":68350538,"filename":"pool/main/p/powershell/powershell_7.2.15-1.deb_amd64.deb"},{"package":"scx","source":"scx","version":"1.6.10.2","architecture":"amd64","section":"utils","priority":"optional","installed_size":7916,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"c278d3834aa12a985f0fc920610f3f8f59a1f223bd27115395f4c3d973d3885d","size":2588278,"filename":"pool/main/s/scx/scx-1.6.10-2.universal.x64.deb"},{"package":"aztfexport","version":"0.13.0","architecture":"amd64","section":"default","priority":"optional","installed_size":73156,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfexport","vendor":"none","license":"MPL-2.0","sha256":"5b991791b757e7205e56bf05ed9942d8c4bd949d3cd8e862b18414924a4c78ab","size":11881750,"filename":"pool/main/a/aztfexport/aztfexport_0.13.0_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.5","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"260bdf499e815b7f8e4f85f5feeb15df78a07c39ce04899c12b856446f1b1a65","size":2806,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.5-x64.deb"},{"package":"servicefabric","version":"9.1.1625.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"93590808e1510dcca63c0356c7ce287f5f4fd58de266252d78f498677a1ddfb2","size":219877974,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1625.1.deb"},{"package":"azureauth","version":"0.7.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":59271,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"660f183ab8d44e13e9c1755b4cb16fc38112f348ca67da470e585876b4c76770","size":19023014,"filename":"pool/main/a/azureauth/azureauth_0.7.3-1_amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8.1-1","architecture":"amd64","section":"java","priority":"optional","installed_size":324342,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"56009bcf7b9c08524d134fc97b99611b05d96884feee1a6de79e1e0269dc13bd","size":164702238,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8.1-1_amd64.deb"},{"package":"moby-cli","version":"19.03.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":83570,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","moby-engine","pigz","xz-utils"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2e59b8af8190363dfa05acfcb7d68ac2be9d2fc27b6d327cbba81c8f5de5dc7f","size":16397016,"filename":"pool/main/m/moby-cli/moby-cli_19.03.14+azure-1_amd64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19893,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.21)"],"sha256":"9a74c3e3e9c66283bbf52f3cc6706555ed222a77f5adb68be201ecc4577cd04e","size":6618446,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.102-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312463,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.102","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.2)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.2)","dotnet-apphost-pack-6.0 (>= 6.0.2)","dotnet-runtime-6.0 (>= 6.0.2)","aspnetcore-targeting-pack-6.0 (>= 6.0.2)"],"sha256":"8392b43e50399f3ecb3bbcf3722dc0651d603fad91ee023a93f44249263ecec1","size":78141664,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.102-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.106-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312663,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.106","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.6)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.6)","dotnet-apphost-pack-6.0 (>= 6.0.6)","dotnet-runtime-6.0 (>= 6.0.6)","aspnetcore-targeting-pack-6.0 (>= 6.0.6)"],"sha256":"5d0cb323acfadabde60420dafc2beae59b9c7e50949be88df6c5c4fbfcc8a44e","size":77747042,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.106-x64.deb"},{"package":"azcmagent","version":"1.35.02478.1194","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"34ea6c2cfcbf593546d19bf6de0245008ba19c5f57d6562e7b9371792ae03279","size":55205234,"filename":"pool/main/a/azcmagent/azcmagent_1.35.02478.1194_amd64.deb"},{"package":"odbcinst","source":"unixodbc","version":"2.3.11","architecture":"amd64","section":"libs","priority":"optional","installed_size":73,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"Helper program for accessing odbc ini files","homepage":"http://www.unixodbc.org/","multi_arch":"foreign","conflicts":["odbcinst1"],"depends":["libc6 (>= 2.4)","odbcinst1debian2 (>= 2.3.11)"],"replaces":["odbcinst1","odbcinst1debian1 (<< 2.3.11)","unixodbc (<< 2.3.11)"],"sha256":"359c86bb4ef6fcb9d7aba0b4e52a26be110bb61ebd32ee8a3f30dc78604ecd63","size":21264,"filename":"pool/main/u/unixodbc/odbcinst_2.3.11_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.13+8-LTS-1","architecture":"amd64","section":"java","priority":"extra","installed_size":317057,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"f186bcb7e5329090a4df46ead70dda124429a977e408c6f1964d6c92f215104c","size":193475910,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.13+8-LTS-1_amd64.deb"},{"package":"mssql-mlservices-python","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":6168858,"maintainer":"Microsoft Data Platform Group ","description":"Anaconda Python for Microsoft SQL Server Machine Learning Services. Provides Open-source distribution of Anaconda and Python","sha256":"ff410d1eaee1c05e846b57a7125e7b1135eeceb44f8e46d21b4380abaaba0efc","size":1405022092,"filename":"pool/main/m/mssql-mlservices-python/mssql-mlservices-python_9.4.7.958_amd64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"45b99186d653c5da137cb970f760ec552cc19e34867f0ea9538231de09167369","size":499988,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.4.deb"},{"package":"aziot-identity-service","version":"1.4.3-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18807,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 3.3)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"c99435b96a6515f009b7fb5c80b871c92f5af551af132b4921b7097cc1d3b395","size":4024220,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.3-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13099,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.12)"],"sha256":"b942920b01885f1ba0980cbe3bee729b059b8f24a90069e95cb4dc2b74a30afc","size":1530422,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.409-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189652,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.409","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.15)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.15)","aspnetcore-runtime-3.1 (>= 3.1.15)"],"sha256":"abd49223df11a97d89158a4a6ea5de3a67d247d612913352086f8c7178405fb1","size":48416056,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.409-x64.deb"},{"package":"mdatp","version":"101.68.80","architecture":"amd64","section":"devel","priority":"optional","installed_size":211880,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"f30d0cddb2341e50f82bd4a46e1b70a3608e134ab4ce03e894757c4b6e207a05","size":62043662,"filename":"pool/main/m/mdatp/mdatp_101.68.80.amd64.deb"},{"package":"moby-engine","version":"20.10.21+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86241,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"280d0c96ffd04c2243f8dc97867a5f4244a862e38776c202d55daf9a4bfc47e5","size":20499414,"filename":"pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu20.04u1_amd64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.4-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17435,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.4)"],"sha256":"55f9fbaf87977ead5245675615f9587d512a55010d5916b9f8f728cf56214cec","size":5761980,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.4-x64.deb"},{"package":"mssql-tools18","version":"18.1.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"084728b16bcd4861296281290d731d22905fd298b6c2fd76036bf07314b6e952","size":211806,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.1.1.1-1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.105-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350038,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.105","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"ee86e6651c1e00b627ef3f7688ca41c0090058df0c2508c638404e7bd64753c8","size":90637070,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.105-x64.deb"},{"package":"moby-containerd","version":"1.6.22+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125895,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"649ee53d05248a2f3807119389b0208ea7abd7a75f05219f6e6431767a140727","size":31599602,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.22+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.815-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241065,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.815","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.27)","aspnetcore-runtime-2.1 (>= 2.1.27)"],"sha256":"612d37eeb142fadbeaff254038fe55f184a1d68f8e1b92468f07f61e2da95d79","size":91759364,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.815-x64.deb"},{"package":"dotnet-host","version":"3.1.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.17","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"6a4b0bcc39800ee3b0afc3abc71e91551e1b91ee64ccd7af3cf27b6d5c9d58bb","size":32466,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.17-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3331-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"2853c3da2add0aecc4c72bd79a045acb8b235fe29c73e55b917fbcfd4e5612d6","size":208736172,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3331-1.deb"},{"package":"open-enclave-hostverify","version":"0.17.5","architecture":"amd64","section":"devel","priority":"optional","installed_size":3072,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"5e644c718af535a268e77c82d77879dce7dd9541d158b1a199fa92b9a6fc608e","size":838568,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.5_amd64.deb"},{"package":"deviceupdate-agent","version":"1.0.2","architecture":"amd64","section":"admin","priority":"extra","installed_size":5423,"maintainer":"aduct@microsoft.com","description":"Device update agent","homepage":"https://github.com/Azure/iot-hub-device-update","depends":["deliveryoptimization-agent (>= 1.0.0)","libdeliveryoptimization (>= 1.0.0)","libcurl4-openssl-dev","libc6 (>= 2.29)","libcurl4 (>= 7.18.2)","libgcc-s1 (>= 3.0)","libssl1.1 (>= 1.1.1)","libstdc++6 (>= 9)","libxml2 (>= 2.7.4)"],"suggests":["deliveryoptimization-plugin-apt"],"sha256":"42b39f5be5b2e5224b3b7f4b5a789a7791c941afdf264bb5dba99d06a317086e","size":1977950,"filename":"pool/main/d/deviceupdate-agent/deviceupdate-agent_1.0.2_ubuntu2004_amd64.deb"},{"package":"dotnet-host","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.1","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"99fc197b20902186c6aebc85aea822570d0e203080d1190275b378c3a360ed4b","size":52842,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.1-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"0.6.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":41,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"d0cb227c89dd60b7bddb22b19457285b3865273a265bf54e5243fe4a0d662f15","size":8784,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_0.6.0_amd64.deb"},{"package":"azure-functions-core-tools","version":"3.0.4806-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"20522a063dd32fd8072a9af2b3beec664bb5e44131841f011ac4287ba4278afa","size":227751104,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4806-1.deb"},{"package":"moby-engine","version":"20.10.7+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":117374,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"a09a4f83339d5aea4d0f206f7e2b4ebc0b0ed1e375a01a9a9c0398f7f8b6f983","size":24736660,"filename":"pool/main/m/moby-engine/moby-engine_20.10.7+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.808-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241389,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.808","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.20)","aspnetcore-runtime-2.1 (>= 2.1.20)"],"sha256":"a05f869fc620f9c8e5be98508928d01911590bfb109eb88f924b5fcfe4f4ae57","size":91790784,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.808-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11066,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.7","homepage":"https://github.com/dotnet/core","sha256":"c267904d0bfcdd06c48b26ca377b1d4cbe1dad8ab24b663809b19c33369c2995","size":3521558,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.7-x64.deb"},{"package":"moby-buildx","version":"0.7.1+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":66340,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"0fadad0de7d30f3064e9218da272bf5501234f9d6385faece7b444acde72d344","size":22795548,"filename":"pool/main/m/moby-buildx/moby-buildx_0.7.1+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.124-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314393,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.124","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.24)","dotnet-apphost-pack-6.0 (>= 6.0.24)","dotnet-runtime-6.0 (>= 6.0.24)","aspnetcore-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"b12b9b63f859b0eb365fc0aaa9d7995add2a24ddc02e0df5602372b51e0a25d3","size":78926170,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.124-1_amd64.deb"},{"package":"mssql-tools18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql18 (>= 18.0.0.0)"],"sha256":"29cf926ce277c710766a2aea8f755474c67002f0cccbd1293993d83c4f636ee2","size":211366,"filename":"pool/main/m/mssql-tools18/mssql-tools18_18.2.1.1-1_amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.15","homepage":"https://github.com/dotnet/core","sha256":"8b1e8e8539e5a5186bd52c168d7fad2a912d0765a999c0e7010444941b7ef402","size":2131114,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.15-x64.deb"},{"package":"azureauth","version":"0.8.2-3","architecture":"amd64","section":"misc","priority":"optional","installed_size":74205,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"48c9c5389d2a1728fc93ba81812d5de5d80f06de5620f2b39c1812408079e1f5","size":24113598,"filename":"pool/main/a/azureauth/azureauth_0.8.2-3_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21357,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.9)"],"sha256":"9966a7144980e0c2bb7e0a7d9dcede9248b401f6f25029a42072500831a77fb1","size":7059802,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.9-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.206-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222067,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.206","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"4ff2bc9e1710927d8c8f3eca32a654e799e580e876b5e692f3fbf4a22f4ea9f3","size":57699996,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.206-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.27-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71113,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.27 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.27)"],"sha256":"01277316792615af37048c0745d1281bf8677c1303935882af1f91904fe4d422","size":21987372,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.27-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.404-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227565,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.404","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"5c9eb60dc14c3de77141c0ce7146896f91f0e45fa19063fff45f29c3b4b44b57","size":58920910,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.404-x64.deb"},{"package":"mdatp","version":"101.71.18","architecture":"amd64","section":"devel","priority":"optional","installed_size":212129,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"a01be3805ced294071b50ec817aa52dd7e3ed03907ca1a14690f0bcad2e1ce46","size":62151012,"filename":"pool/main/m/mdatp/mdatp_101.71.18.amd64.deb"},{"package":"moby-compose","version":"2.11.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"13f2b881b89fb6888d9c760056f474e8a957a0302556227543fcbaddfe0390ef","size":9569480,"filename":"pool/main/m/moby-compose/moby-compose_2.11.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.0","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"69f10e4842ea147f09de31260716f8ec225c4b37db721d03392a6719cd0ff0ea","size":2804,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.0-x64.deb"},{"package":"blobfuse2","version":"2.0.5","architecture":"amd64","section":"default","priority":"optional","installed_size":31350,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"1f399da94f337942d78995cbab448f88552e7107e2ebbd885d463b22a2bd43f8","size":15490920,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.5.x86_64.deb"},{"package":"scx","source":"scx","version":"1.7.1.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":7920,"maintainer":"Microsoft Corporation","description":"Microsoft System Center Operations Manager for UNIX/Linux agent","depends":["omi (>= 1.0.8.6)"],"provides":"scx","sha256":"120ad5bfed144be98b596a7130ab6ef75590d602f470edafe496b92cf95bb84b","size":2748240,"filename":"pool/main/s/scx/scx-1.7.1-0.ssl_110_universal.s.x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.407-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337182,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.407","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.15)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.15)","dotnet-apphost-pack-6.0 (>= 6.0.15)","dotnet-runtime-6.0 (>= 6.0.15)","aspnetcore-targeting-pack-6.0 (>= 6.0.15)"],"sha256":"6749bdafa013e4681150e83b49102e7dabe276d5cf2effafc74505b597dc63ba","size":86699018,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.407-x64.deb"},{"package":"dotnet-host","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"f80582e30c742f2e0615eb456535b98524fb0036af163b40c5ea8b52d85fc35a","size":32404,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.19-x64.deb"},{"package":"powershell-lts","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"e8a94fca555dd774d7c942d6892082637b811b8eb3eddf1a6820033d833d156c","size":70503936,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.11-1.deb_amd64.deb"},{"package":"moby-containerd","version":"1.5.16+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":109065,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"70fff5c28bf9a65ff9119757a923d7637402b84b3715be6c57fca005f3792e82","size":26803798,"filename":"pool/main/m/moby-containerd/moby-containerd_1.5.16+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.2 5.0.2","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.2)","libc6"],"sha256":"eede5e3518991b6b207259660751fbb2803afd10578863c00cb113fbc03aa6c6","size":140760,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.2-x64.deb"},{"package":"mde-netfilter-src","version":"100.69.59-2","architecture":"amd64","section":"alien","priority":"extra","installed_size":63,"maintainer":"root ","description":"Microsoft Defender for Endpoints Netfitler","sha256":"a804fafeb8c74bca1b8344740b45d39b1dea55e65be9f73d3d88fb2eeb1f3643","size":13628,"filename":"pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.59-2.amd64.deb"},{"package":"azapi2azurerm","version":"1.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20460,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"40aeaab74ceb13e7c63047f68992d326dc4b23bc3e2e3fa32200ad3cf4fe5481","size":6693854,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.0.0-1-amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.19","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"31c882bf5eed107484514717267ebef2535552d8a5b6477a53d70923dfd2e1a2","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.19-x64.deb"},{"package":"blobfuse2","version":"2.0.3","architecture":"amd64","section":"default","priority":"optional","installed_size":27909,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"ff605bf4122ef16eb33411f58240594c45b411b2807431f7a7c8874b6f0ce9fd","size":13181856,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.3.x86_64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68401,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.5","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.5)","dotnet-runtime-deps-6.0 (>= 6.0.5)"],"sha256":"d62ec2da2962a43a5f0dba56da7473a91a592f5bd93c660a73f4485ce92e9f70","size":22586332,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.5-x64.deb"},{"package":"libmsquic","version":"2.2.4","architecture":"amd64","section":"default","priority":"optional","installed_size":17412,"maintainer":"Microsoft QUIC Team ","description":"Microsoft implementation of the IETF QUIC protocol","homepage":"https://github.com/microsoft/msquic","conflicts":["libmsquic-debug"],"depends":["libssl1.1","libnuma1"],"provides":"libmsquic","vendor":"Microsoft","license":"MIT","sha256":"994d24a840e636f75a59cac0674627ac661e864268b6298f004d9e2044c87aa5","size":4575380,"filename":"pool/main/libm/libmsquic/libmsquic_2.2.4_amd64.deb"},{"package":"mdatp","version":"101.98.58","architecture":"amd64","section":"devel","priority":"optional","installed_size":306955,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7bc64225075faaef53ec1053f82c96afe64ed8bc676f2c1306237d7c6186a253","size":120343942,"filename":"pool/main/m/mdatp/mdatp_101.98.58.amd64.deb"},{"package":"aztfy","version":"0.9.0","architecture":"amd64","section":"default","priority":"optional","installed_size":46316,"maintainer":"magodo ","description":"A tool to bring existing Azure resources under Terraform's management","homepage":"https://github.com/Azure/aztfy","vendor":"none","license":"MPL-2.0","sha256":"4724f2facdb5c23b9913f23d89b10316d6cd5cc320fdf436bcf68d6a0b16f8ab","size":8770940,"filename":"pool/main/a/aztfy/aztfy-0.9.0-1-amd64.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.10-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13096,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.10)"],"sha256":"8bab05ba98fd4ad4daf82e5386008bbce86e9961c6e4435d2e9822da843bccea","size":1510954,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.10-1_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11723,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f84e4d0753808e6bf67444aa83bc1d8da29e5fd367fb7cbfd90bb6b531568201","size":1305948,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.0.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.308-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367125,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.308","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.11)","dotnet-runtime-7.0 (>= 7.0.11)","dotnet-targeting-pack-7.0 (>= 7.0.11)","aspnetcore-runtime-7.0 (>= 7.0.11)"],"sha256":"14819de0322cdb8b9c824ad59523ff57988c1d0bbb84c34e8d76e39797c1dbc8","size":96633586,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.308-1_amd64.deb"},{"package":"blobfuse","version":"1.3.7","architecture":"amd64","section":"devel","priority":"optional","installed_size":33123,"maintainer":"Microsoft - Azure Storage","description":"blobfuse 1.3.7 - FUSE adapter for Azure Blob Storage","depends":["fuse"],"sha256":"b84b62cb202e0c45feb5d4dfb0b183e4442f48c36d7c8949578aba10a9cfb843","size":9462010,"filename":"pool/main/b/blobfuse/blobfuse-1.3.7-ubuntu-20.04-x86_64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.2-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70793,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.2","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.2)","dotnet-hostfxr-7.0 (>= 7.0.2)"],"sha256":"6df99d1c834135ebb4586f8a416716cc691285d5528fc2d08075ec060227016b","size":23188610,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.2-x64.deb"},{"package":"azcmagent","version":"1.32.02371.983","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"e89390a265f126952d225d40a5c4e58014a32c20efc573868674738097b08b5f","size":54306730,"filename":"pool/main/a/azcmagent/azcmagent_1.32.02371.983_amd64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.20-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.20)"],"sha256":"c663e63f79bfee8b76205b03bc7bfefe282becacf8a7dd98b380354d42988521","size":1315494,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.20-x64.deb"},{"package":"open-enclave","version":"0.18.2","architecture":"amd64","section":"devel","priority":"optional","installed_size":122248,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"f5ea248d511c8221f0363d2040271758a3ca7f2d642edcd66c36f5006311b5ec","size":33299982,"filename":"pool/main/o/open-enclave/Ubuntu_2004_open-enclave_0.18.2_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.17-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68398,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.17 Microsoft.NETCore.App 5.0.17","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.17)","dotnet-hostfxr-5.0 (>= 5.0.17)"],"sha256":"a66dde139e264fb73a05421293609413126d5b7928141138e78f51ed2b2be568","size":22011822,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.17-x64.deb"},{"package":"servicefabric","version":"9.1.1592.1","architecture":"amd64","section":"base","priority":"optional","maintainer":"ServiceFabric Maintainer ","description":"Service Fabric","depends":["acl","cgroup-tools","curl","aspnetcore-runtime-6.0","ebtables","lttng-modules-dkms","nodejs","openssh-server","libssh2-1","liblttng-ust0"],"sha256":"dbe9072890631add3bfa35454db4ad5d00d62d5bb54935780c4826e89eee081d","size":219815274,"filename":"pool/main/s/servicefabric/servicefabric_9.1.1592.1.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.405-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227617,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.405","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.14)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.14)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.14)"],"sha256":"698e5de0f8650f096a70bec60f0ae3bcc8a661729e438a4c807ecd3b579dd4c6","size":58837002,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.405-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.24","homepage":"https://github.com/dotnet/core","sha256":"3a1c44092c90f674e400896b1bdb629091bc899774ef03d80a6f82568743069c","size":3522342,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.24-1_amd64.deb"},{"package":"moby-containerd","version":"1.6.24-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":126668,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"60a2432bb916841fe75f77b9a6bb26417c68c7ee34f783966f6ddc20a39eb167","size":44742130,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu20.04u2_amd64.deb"},{"package":"intune-portal","version":"1.2211.21","architecture":"amd64","section":"utils","priority":"optional","installed_size":18507,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpam-pwquality (>= 1.4.0-2)","libjavascriptcoregtk-4.0-18","libatk1.0-0 (>= 1.12.4)","libuuid1 (>= 2.16)","libcurl4 (>= 7.16.2)","libsoup2.4-1 (>= 2.4.0)","libsystemd0","libx11-6","libglib2.0-0 (>= 2.35.8)","libgtk-3-0 (>= 3.16.2)","libc6 (>= 2.29)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libpango-1.0-0 (>= 1.14.0)","msalsdk-dbusclient (>= 1.0)","libsqlite3-0 (>= 3.7.14)","libsecret-1-0 (>= 0.19.1)","libglib2.0-0 (>= 2.12.0)","libc6 (>= 2.28)","libgtk-3-0 (>= 3.9.10)","libssl1.1 (>= 1.1.0)","libwebkit2gtk-4.0-37 (>= 2.5.3)","zlib1g (>= 1:1.2.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"696481ab2d249391918d008691058791c138b82f0300283654841dd181036dd4","size":3310888,"filename":"pool/main/i/intune-portal/intune-portal_1.2211.21_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.29 Microsoft.NETCore.App 3.1.29","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.29)","dotnet-runtime-deps-3.1 (>= 3.1.29)"],"sha256":"82a0de75f01251437d155681b4706eb56438e2fca21135d1dfb4d3b3a44ec74e","size":21619890,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.29-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.19-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11748,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"0659506cd6862cdcce62768918ea580c070c1249a0e2e5b0aba323891e75bac7","size":1314238,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.19-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.26 3.1.26","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.26)","libc6"],"sha256":"8fe6a2130ed312ada320642f2307bf2d5f668e5ddb17403914a76df0486cceaf","size":120752,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.26-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"4.2.6","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"8390b688082ac2020be3ec1b6e2e900c224ce58bf8a9aea9ec5de177c03afe2c","size":499500,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-4.2.6.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.4","homepage":"https://github.com/dotnet/core","sha256":"a29731b3eb2fbc979483e03413bba8cc3caa6bf5250e7a141f4eb68d00dcca60","size":3523150,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.4-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.12-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.12","homepage":"https://github.com/dotnet/core","sha256":"e3c05b2bb27d1b332e34d4363b72cc8ed6d47a18f278c5fd9d4ad65502695184","size":3521786,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.12-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.108-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312667,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.108","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.8)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.8)","dotnet-apphost-pack-6.0 (>= 6.0.8)","dotnet-runtime-6.0 (>= 6.0.8)","aspnetcore-targeting-pack-6.0 (>= 6.0.8)"],"sha256":"06d2325a3a1310f231bbbf0d1f4428fd71934e0b448fb30a458f5a76235b3fa0","size":78002896,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.108-x64.deb"},{"package":"powershell-lts","version":"7.2.15-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168905,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"12f24124a2908286b81081866fc63562dbff0aff63ed85bf4c2140772da3bc78","size":68354770,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.15-1.deb_amd64.deb"},{"package":"mde-netfilter","version":"100.69.62","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"212e84e652d7b1591429bcf4e6acefee0fb3ba3295b8a2e64652cd8235058974","size":24424,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.62.amd64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189498,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.402","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.8)","aspnetcore-targeting-pack-3.1 (>= 3.1.8)","dotnet-runtime-3.1 (>= 3.1.8)","aspnetcore-runtime-3.1 (>= 3.1.8)"],"sha256":"bf51063ba56fb5033d15f759affb4361ce8a467d1c6f4a8a93f3c68c47f7ae7a","size":48250240,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.402-x64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10788,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.9","homepage":"https://github.com/dotnet/core","sha256":"6b16c95467e30e877a45ce38aa28accd9e8bba195289248e8fd212240226cff0","size":3406414,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.9-x64.deb"},{"package":"moby-engine","version":"20.10.25+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86953,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c87c63362406bb6146c525d1f89d08283be4df96fbb3fe748a96c83667c02c09","size":20692210,"filename":"pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu20.04u1_amd64.deb"},{"package":"mde-netfilter","version":"100.69.48","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"eca7883022d9968c8ce2e357230abe4fbae1df472f490c13428a988275d34527","size":24420,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.48.amd64.deb"},{"package":"dotnet-runtime-2.1","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68129,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 2.1.19 Microsoft.NETCore.App 2.1.19","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-2.1 (>= 2.1.19)","dotnet-hostfxr-2.1 (>= 2.1.19)"],"sha256":"51d29f4bb8769d6a799558f31cdcac99ece2213ba632c201c7c3b908cdb05a62","size":20646700,"filename":"pool/main/d/dotnet-runtime-2.1/dotnet-runtime-2.1.19-x64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.25-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71092,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.25 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.25)"],"sha256":"853db00bda315f9542a5e538a7e4c6c56203de0e47b58c51cae0b965936f33a4","size":21961714,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.25-x64.deb"},{"package":"mssql-tools","version":"17.10.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL Tools Team ","description":"Tools for Microsoft(R) SQL Server(R)","depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","msodbcsql17 (>= 17.3.0.0)"],"sha256":"750c5e413db5a154dd708e85bbe3ca11bdfa1bc9093a898934e2a858c8336ffa","size":210704,"filename":"pool/main/m/mssql-tools/mssql-tools_17.10.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4736-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bfb537fe76a7537389d7bbb2184fbb3d47c2507d5618fc6dc6cee489de2cae96","size":124528228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4736-1.deb"},{"package":"msopenjdk-11","version":"11.0.18-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317542,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["fonts-dejavu","libx11-6","libxext6","libxi6","libxrender1","libxtst6","libasound2","libfontconfig1","libfreetype6"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"aa8b4fef36b3105c2da2fa5115c1e6ad1db05059a113a3848e821a26190bbf5d","size":194035104,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.18-1_amd64.deb"},{"package":"blobfuse2","version":"2.0.4","architecture":"amd64","section":"default","priority":"optional","installed_size":31358,"maintainer":"Blobfuse v-Team ","description":"An user-space filesystem for interacting with Azure Storage","homepage":"https://github.com/Azure/azure-storage-fuse","depends":["fuse3"],"vendor":"none","license":"unknown","sha256":"79198abd87f82ee46b1b894d0ef873e93cecc508316e93893b5db322fe0a114f","size":15490958,"filename":"pool/main/b/blobfuse2/blobfuse2-2.0.4.x86_64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.23","homepage":"https://github.com/dotnet/core","sha256":"8eb9366b0a0a45e0231704b408fae41733d283c8d663e90189aa3b70a333ae54","size":3519112,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.23-1_amd64.deb"},{"package":"aadlogin","version":"1.0.015280001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS and PAM extensions","depends":["libcurl4","libuuid1","openssh-server"],"sha256":"4e0471d3b89a07c159e5e7f1ffee0ad6a2a6b98941a5d2dc3310e5f65f9dc483","size":407452,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015280001_amd64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.11.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":513,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.11.1~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.11.1~beta.1)"],"sha256":"6e6b028987de0f3a3d03868ebdc4bdb403b10a4f83f5f0ccfd4d6b666cfa19e3","size":79986,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.11.1~beta.1-Linux.deb"},{"package":"mde-netfilter","version":"100.69.59","architecture":"amd64","section":"devel","priority":"optional","installed_size":92,"maintainer":"Microsoft Defender for Endponts ","description":"Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace","depends":["libnetfilter-queue1","libglib2.0-0"],"sha256":"9bb51091801bbfa8979e90de219b80ae4ec77bffbb71d63ee87a68242af631a4","size":24414,"filename":"pool/main/m/mde-netfilter/mde-netfilter_100.69.59.amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.8)"],"sha256":"3064914f58f7f230a74bbe0c9c22e9522898f8f8005999ca536f4a429e0a8af9","size":7057918,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.8-x64.deb"},{"package":"aadsshlogin","version":"1.0.017190001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadlogin"],"depends":["libcurl4","libuuid1","openssh-server (>=6.9)"],"sha256":"5b9542c5ba271ee38580d8152f8ddc13869037e74124e4a9b567458017d36a59","size":418790,"filename":"pool/main/a/aadsshlogin/aadsshlogin_1.0.017190001_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68462,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.21","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.21)","dotnet-runtime-deps-6.0 (>= 6.0.21)"],"sha256":"94954b3e7667d6fcc8c6f2de4f07602653cba4b8419edaa41eacbc205c931466","size":22867970,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.21-1_amd64.deb"},{"package":"dotnet-hostfxr-7.0","version":"7.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":424,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 7.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 7.0.10)","libc6"],"sha256":"fc05aaf053f3306f2dd18eaabb047097e5fa1609afafd5c0f529072e39b8de6d","size":143938,"filename":"pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.10-1_amd64.deb"},{"package":"moby-containerd","version":"1.4.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":120062,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.0~rc10)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"645c4cee097414d061a02cfb148b0d54274dd6d9ca06367c61d12ceb0fab4dd9","size":26982140,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.11+azure-1_amd64.deb"},{"package":"defender-iot-premium","version":"0.1","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender Premium","conflicts":["defender-iot-micro-agent"],"depends":["defender-iot-micro-agent-edge","sim-agent-edge"],"sha256":"a4a5179f8c2fa455fdcabfa4bb288fc31f2f75b6af0dbaf0676623e747cc9a3c","size":1272,"filename":"pool/main/d/defender-iot-premium/defenderiot-premium-ubuntu2004-amd64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.20","homepage":"https://github.com/dotnet/core","sha256":"8ec70663d512ed443c4527fbf447b29676fe3ce69bbbbbe58912fa3324d3877b","size":42028,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.122-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314379,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.122","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.22)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.22)","dotnet-apphost-pack-6.0 (>= 6.0.22)","dotnet-runtime-6.0 (>= 6.0.22)","aspnetcore-targeting-pack-6.0 (>= 6.0.22)"],"sha256":"2a8ce53fc735ccd1336abc88949ec01164b53ae92e73113ccae284426808466d","size":78881346,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.122-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"18ff586f6e58d8b0b92e371f3dd23c2cc107c1c943be1479a122a1402ac4ba81","size":2808,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.110-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":175184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.110","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.10)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.10)","aspnetcore-runtime-3.1 (>= 3.1.10)"],"sha256":"0c4febbe0a5031c9497be65082e34fc8f869d707895f1c4368db61edd6a2afce","size":43155386,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.110-x64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.3-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21339,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.3)"],"sha256":"d0ef9c1f3798088ed85efd5528038d2f49bd1abfbf925ab1650ee00c259c2bee","size":7051750,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.3-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":169170,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"576b137e96a3853e87d2595efd06c8acdda6746bc9e207ace3ef7ba7b18a1747","size":67026634,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.7-1.deb_amd64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.31","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"f43df5cc056e4efed7fb1834c85c21c1f63af3af9cdbd4a2567b4c62a550d3e8","size":2684,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.31-x64.deb"},{"package":"powershell","version":"7.1.2-1.ubuntu.20.04","architecture":"amd64","section":"shells","priority":"extra","installed_size":174320,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","liblttng-ust0","libstdc++6","zlib1g","libssl1.1","libicu66"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"23639edff0487fe084d011767c67d35d55f37a22bd00cd0bb48acddff9f217b8","size":68283752,"filename":"pool/main/p/powershell/powershell_7.1.2-1.ubuntu.20.04_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.12-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21370,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.12)"],"sha256":"49778ed3574083e50016311ef9880a9e056a3b1a22e927de7c2d85c788b034a0","size":7064358,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.12-1_amd64.deb"},{"package":"moby-compose","version":"2.6.1+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":25720,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"96719d676128a6620f9a4c2d91f69f65455d8167b6e4206e827f22b3d65fc8b7","size":6499556,"filename":"pool/main/m/moby-compose/moby-compose_2.6.1+azure-ubuntu20.04u1_amd64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.016820001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"953f95560f7fe014ac2e89b4ad6d1113f9d88deddca6a571f7d1d1346e59fda4","size":10262,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.016820001_amd64.deb"},{"package":"moby-engine","version":"20.10.8+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":98001,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.0~rc93)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"2b0072cb4de51dff8327d7222c6054095c880d97195c59901a8003fa59ac2637","size":21175036,"filename":"pool/main/m/moby-engine/moby-engine_20.10.8+azure-1_amd64.deb"},{"package":"sysinternalsebpf","version":"1.3.0","architecture":"amd64","installed_size":22072,"maintainer":"Sysinternals ","description":"A shared library and code library for making eBPF programs.","depends":["libc6 (>= 2.26)","libelf1 (>= 0.131)","libglib2.0-0 (>= 2.12.0)","libjson-glib-1.0-0 (>= 0.13.2)","zlib1g (>= 1:1.2.3.3)"],"sha256":"3e270e63a81f5cd729afb1f69b43e9fc648f010be900068fab4f30bb4a4adb7f","size":714818,"filename":"pool/main/s/sysinternalsebpf/sysinternalsebpf_1.3.0_amd64.deb"},{"package":"aziot-edge","version":"1.4.16-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":18513,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.5-1)","sed"],"sha256":"ff467929857a81cc3ed6261aef74323ddb423eac938de832e6cfdb3ed342b7a5","size":4430372,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.16-1_amd64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11281,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.8","homepage":"https://github.com/dotnet/core","sha256":"f74114d6282233fc1ba4f5a15b0edf94e7fdc5e5bae13a90917abdfdc228b4ad","size":3518666,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.8-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.120-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":174528,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.120","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.20)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.20)","aspnetcore-runtime-3.1 (>= 3.1.20)"],"sha256":"e52be3bd6881374458c71b2415dd9b161c2afef6aa9ccc1a39efea053dc86ddc","size":43996192,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.120-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":216,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.4","homepage":"https://github.com/dotnet/core","sha256":"36ed81ddbcfe3d88f50af12c69fb776ead270473b859e19241602a53b8e20855","size":42468,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.4-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.22","homepage":"https://github.com/dotnet/core","sha256":"860018d9b9d9d59cdaea249e76b894d970cf2084d4cf1f6786f623bcb7c7d378","size":3520576,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.22-1_amd64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.23","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"32a124e361da79d71007cf8a9f1c916ba7fb543d06eae504eeb58e23cd9bfe5d","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.23-1_amd64.deb"},{"package":"moby-cli","version":"20.10.11+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":60992,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b884d901dc121f68973e86cabe6897dc4d75ef36073e482d300534af94c65518","size":10578864,"filename":"pool/main/m/moby-cli/moby-cli_20.10.11+azure-1_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4483-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"8b9d47e868ff588ae5bf664488ca477a135250c95710fb182347710096129c43","size":135288228,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4483-1.deb"},{"package":"aziot-edge","version":"1.4.1-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":17784,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.4.1-1)","sed"],"sha256":"52e552d29d0e63e170389d07dfb35d8fa7d0e7ac394ca2a96521cb3aec48112b","size":4204528,"filename":"pool/main/a/aziot-edge/aziot-edge_1.4.1-1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.5-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10790,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.5","homepage":"https://github.com/dotnet/core","sha256":"4c87ab48a41bad9380eb738078c16a08cd6e1c2de4b31c231f5418f7102208ad","size":3399662,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.5-x64.deb"},{"package":"libdeliveryoptimization-dev","version":"1.1.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":44,"maintainer":"docloss@microsoft.com","description":"The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux","directly_contact_us":"","homepage":"https://github.com/microsoft/do-client","depends":["libdeliveryoptimization"],"sha256":"3f47623349ef8ebde89e3d52415ef854a84553046421036404ffe9d74bf3b4f0","size":9164,"filename":"pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.1.0_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.8","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"28dd20f6330a3450e23fb0e4c179a25e3ed71db7d3722c1e55089040432c22af","size":2648,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.8-x64.deb"},{"package":"moby-containerd","version":"1.4.13+azure-ubuntu20.04u3","architecture":"amd64","section":"admin","priority":"optional","installed_size":118172,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbd03457376c4da1098fd64f88ba7e1c9364d3f54a8ef3cc300102bdcbbeab58","size":24574184,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.13+azure-ubuntu20.04u3_amd64.deb"},{"package":"azureauth","version":"0.8.2-8","architecture":"amd64","section":"misc","priority":"optional","installed_size":74209,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"75cbd72c69154486be29fae15d943f345260e9433353f1199389e1cb80a99bc2","size":24118802,"filename":"pool/main/a/azureauth/azureauth_0.8.2-8_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.310-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":367152,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.310","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.13)","dotnet-runtime-7.0 (>= 7.0.13)","dotnet-targeting-pack-7.0 (>= 7.0.13)","aspnetcore-runtime-7.0 (>= 7.0.13)"],"sha256":"a3cb0afabef1917d15235dced239ab22071c829da8f8c0122e66e9fa5a9eccc3","size":96615326,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.310-1_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.29 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.29)"],"sha256":"e543e97c14378c663703f2ffe643bfbf449b8093d73be0d4f64779602f64a070","size":21914140,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.29-x64.deb"},{"package":"moby-buildx","version":"0.10.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":69097,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"3205845143e75adbaf2df5d4acb2925d86917e3e17c4f3945938c363bbd2d387","size":25966666,"filename":"pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71112,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.18 Microsoft.NETCore.App 3.1.18","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.18)","dotnet-runtime-deps-3.1 (>= 3.1.18)"],"sha256":"48350737cda6361ab38e083a455e27ed00a126413ff867c79763b75eeee7a381","size":21887942,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.18-x64.deb"},{"package":"moby-compose","version":"2.23.0-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":58369,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["libc6 (>= 2.3.4)","moby-cli"],"sha256":"1c094bde70a1ccf9886c162cb47c89f75ecdf2ba9cb18ddc604b231adc458f77","size":17592370,"filename":"pool/main/m/moby-compose/moby-compose_2.23.0-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.14","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.14)","libc6"],"sha256":"06558a79a1f4004ee029c0ca5e06635ee771f3379b28e409cdb9126c8fa4de71","size":142366,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.14-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.28-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71233,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.28 Microsoft.NETCore.App 3.1.28","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.28)","dotnet-runtime-deps-3.1 (>= 3.1.28)"],"sha256":"e5245eb6ee751de6929b08e564b1bcc76b8b6190fe761e5b56963dc941a25948","size":21822608,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.28-x64.deb"},{"package":"mssql-mlservices-mlm-r","version":"9.4.7.958","architecture":"amd64","section":"devel","priority":"optional","installed_size":549275,"maintainer":"Microsoft Data Platform Group ","description":"Packages for R support in Microsoft SQL Server Machine Learning Services (Full install). Provides RevoScaleR, MicrosoftML, sqlRUtils, olapR, pre-trained models for image featurization and text sentiment analysis","depends":["mssql-mlservices-packages-r"],"sha256":"59c5558dc8065f87447538df2e2a2bd5118a773a8750718a56b1df090443b277","size":521701410,"filename":"pool/main/m/mssql-mlservices-mlm-r/mssql-mlservices-mlm-r_9.4.7.958_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.28-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.28 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.28)"],"sha256":"138e2838b892d92a0bb3b8236d72987af65ed9451f1dd1ae03f920ba6cec17de","size":21905448,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.28-x64.deb"},{"package":"aadlogin","version":"1.0.015950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"AAD NSS, PAM and certhandler extensions","conflicts":["aadsshlogin"],"depends":["libcurl4","libuuid1","openssh-server"],"sha256":"8221a88f2d61c55eb5d477e261c47b51a03f4afe49954c93477d62480c32b7f8","size":413684,"filename":"pool/main/a/aadlogin/aadlogin_1.0.015950001_amd64.deb"},{"package":"azapi2azurerm","version":"1.2.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20660,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"6099cbc085feae459ba885b688a11111c95bfecb321da7a17f593e4b8da3a339","size":6709814,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.2.0-1-amd64.deb"},{"package":"libmsquic","version":"1.5.0","architecture":"amd64","section":"default","priority":"extra","installed_size":5560,"maintainer":"<@28646e3e24d7>","description":"no description given","homepage":"https://github.com/microsoft/msquic","vendor":"none","license":"MIT","sha256":"f7307dc9be7a8a671898029392352c23a30099c8ef201826c2ab6ba2ed935e10","size":1813382,"filename":"pool/main/libm/libmsquic/libmsquic-1.5.0-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27378,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.18","homepage":"https://github.com/dotnet/core","sha256":"71a3aa22666f1348e84d2d308db567fc5acc7dc3877c7b4d329f4bc1c0b587f3","size":2118644,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.18-x64.deb"},{"package":"msopenjdk-17","version":"17.0.8-3","architecture":"amd64","section":"java","priority":"optional","installed_size":325465,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"3ea7875f7ee282162012226e206a40de9f8d2d2de720f41f573a45ebeed08bb1","size":165338790,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-3_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.19 3.1.19","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.19)","libc6"],"sha256":"fa4e79024e7b1101e088c9d2ccdb16025af516c3aa33706257d2e1395b99ccb9","size":120914,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.19-x64.deb"},{"package":"open-enclave-hostverify","version":"0.17.6","architecture":"amd64","section":"devel","priority":"optional","installed_size":3071,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"3ba76caa0397c4cc1c8dd81fc6fe321c59870850faafe53d6c53993410462ae9","size":837980,"filename":"pool/main/o/open-enclave-hostverify/open-enclave-hostverify_0.17.6_amd64.deb"},{"package":"moby-containerd","version":"1.4.12+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":120078,"maintainer":"Microsoft ","description":"industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"fbc4785935323208e52a67294c91e4a2942fc778688a04c1d5c2bfd10d40fc2c","size":26990272,"filename":"pool/main/m/moby-containerd/moby-containerd_1.4.12+azure-2_amd64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.4","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"9f9fa8ff87294acd3d2446188eb19a2450dcb4735b8af9ea00d44d23bf664405","size":500628,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.4.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.20","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.20)","libc6"],"sha256":"38f6d045ebf8dc7b6b1c554a4d81a8e59e50e90438ee9b1fd76f594047583d3d","size":142360,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.20-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.305-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331325,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.305","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"0d00a3ebb16ac569861b16c79c64a094ae0460767206c4a0663d85010a758286","size":85062916,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.305-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3160-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"aa2bf4e9c55be59f76b3adfa80c2e189a1ffdcca908b6fb786317a9b891d1727","size":204037628,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3160-1.deb"},{"package":"powershell-preview","version":"7.2.0-preview.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":160448,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"7a28a1d06c3790f9cb1b5fe7bf5df1a72bf01f8dcaa9bed1c53656739d53c64c","size":64902476,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.9-1.deb_amd64.deb"},{"package":"apt-transport-https-sas","version":"0.10-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":51,"maintainer":"Skype Core Services Ops ","description":"SAS (Secure Access Signature) token authentication support for","depends":["python2.7","python3","apt-transport-https"],"sha256":"3324fc1a3204b8781d018da00b427a4600e3af44b8fc28a04326913de802ac2e","size":13190,"filename":"pool/main/a/apt-transport-https-sas/apt-transport-https-sas_0.10-1_amd64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.27-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.27 2.1.27","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.27)","libc6"],"sha256":"2c9e779ee95dce861cd6d2c8d14d37dcf560f4ad982235af86664ad4c0c68eb6","size":143614,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.27-x64.deb"},{"package":"open-enclave","version":"0.17.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":113754,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave SDK","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"recommends":["pkg-config"],"sha256":"c4957ceca38fe897f2237c396a638f6ca03deab9b1e2087809eae77f13d2c2ec","size":31095302,"filename":"pool/main/o/open-enclave/open-enclave_0.17.1_amd64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.18)","libc6"],"sha256":"9930731bace0066046b2ab6be0886548e62a4f0b12aa72e8c59b58f93c88e117","size":142484,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.18-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68461,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.23","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.23)","dotnet-runtime-deps-6.0 (>= 6.0.23)"],"sha256":"aed16cfefc6903202f11af5aad5728f6eabe5905221309097e9d5dd60bfd2e29","size":22882640,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.23-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4868-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5c6f1d1609d7f1566ddef53416ae4d63c1fef4c001eede265f66c1b930ef0a33","size":228285872,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4868-1.deb"},{"package":"codespaces","version":"1.0.2804","architecture":"amd64","section":"devel","priority":"extra","installed_size":95227,"maintainer":"Microsoft Corporation","description":"Codespaces allows you to register your local machine/development environment, which allows you to access them from remote VS Code instances or a browser based editor, enabling you to work on any project from anywhere with the tools you already know.","depends":["gnome-keyring","libsecret-1-0","desktop-file-utils","x11-utils","openssl","libkrb5-3","zlib1g"],"sha256":"7ad79a3bcd30c42347e465cab0ae379591a52ae01aeda160b2e00e9a46bdeaa2","size":27017990,"filename":"pool/main/c/codespaces/codespaces_1.0.2804_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.2-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":206162,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"573b9336334b5e4df31df0fc62ce82f186770a569d501fc643e15ee68262740b","size":74245238,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.2-1.deb_amd64.deb"},{"package":"libodbc1","source":"unixodbc","version":"2.3.11-1","architecture":"amd64","section":"libs","priority":"optional","installed_size":608,"maintainer":"Ubuntu Developers ","original_maintainer":"Steve Langasek ","description":"ODBC library for Unix","homepage":"http://www.unixodbc.org/","multi_arch":"same","breaks":["unixodbc (<< 2.2.14p2-3)"],"depends":["libc6 (>= 2.14)","libltdl7 (>= 2.4.2)"],"suggests":["msodbcsql17","unixodbc-bin"],"replaces":["unixodbc (<< 2.2.14p2-3)"],"sha256":"55a2cad0d17fd8068f2bda66b83a4bdf0c55ce9a3e5ea859d7effe06ecab1cc1","size":485628,"filename":"pool/main/u/unixodbc/libodbc1_2.3.11-1_amd64.deb"},{"package":"moby-compose","version":"2.17.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":52638,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"314a1812d59c17901c1a0506d25f44883c3c9f972abb21e0afdd22510aee19ac","size":10850714,"filename":"pool/main/m/moby-compose/moby-compose_2.17.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"moby-engine","version":"20.10.17+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":97674,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"c707b0a5897a613d1e36df579699cf01283ecd255b85af60127d204b21f1ea04","size":20971950,"filename":"pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu20.04u1_amd64.deb"},{"package":"mdatp","version":"101.25.72","architecture":"amd64","section":"devel","priority":"optional","installed_size":146402,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd","libselinux1"],"sha256":"d7a8f56970f48dbc7ea30a611e68cb9afcd91d5603c5ced0df51329920211bd5","size":43263098,"filename":"pool/main/m/mdatp/mdatp_101.25.72.amd64.deb"},{"package":"aadlogin-selinux","version":"1.0.014760002","architecture":"amd64","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"fa26dcf2fa4f3895f94b0b7d772794f3ce225ca3a48fde0bd0b2c62b73b2dba8","size":10166,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.014760002_amd64.deb"},{"package":"azcmagent","version":"1.21.02043.328","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"3e6cd4ad741a2f5ce1aa8320733a88dcaecf13ad35f48833da8fff7ede193603","size":53305240,"filename":"pool/main/a/azcmagent/azcmagent_1.21.02043.328_amd64.deb"},{"package":"moby-containerd","version":"1.6.18+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":125356,"maintainer":"Microsoft ","description":"Industry-standard container runtime","system":"image transfer and storage, container execution and supervision,","homepage":"https://github.com/containerd/containerd","conflicts":["containerd","containerd.io","moby-engine (<= 3.0.12)"],"depends":["libc6 (>= 2.4)","moby-runc (>= 1.0.2)"],"recommends":["ca-certificates"],"provides":"containerd, containerd.io","replaces":["containerd","containerd.io"],"sha256":"61b4d8602bda831abd9f42ac170b83403ac9f5836d6d31ea1ee5458abc4def22","size":31459254,"filename":"pool/main/m/moby-containerd/moby-containerd_1.6.18+azure-ubuntu20.04u1_amd64.deb"},{"package":"open-enclave-hostverify","version":"0.19.0","architecture":"amd64","section":"devel","priority":"optional","installed_size":3584,"maintainer":"oesdk@lists.confidentialcomputing.io","description":"Open Enclave Report Verification Host Library","recommends":["pkg-config"],"sha256":"43b79ffff2d3e985569eb5cbde9d3c3c697c32c9e014e510d52ee4e9a10c3c85","size":980418,"filename":"pool/main/o/open-enclave-hostverify/Ubuntu_2004_open-enclave-hostverify_0.19.0_amd64.deb"},{"package":"dotnet-host","version":"2.1.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.19","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"8f92b5019226d9bbeddc5395dea76685ef7d7c4a08e39f213d8c4aa67693bab7","size":36586,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.19-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.811-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241184,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.811","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.23)","aspnetcore-runtime-2.1 (>= 2.1.23)"],"sha256":"6b78f2524be868f547fce3d608d313c05b9afceedf22ad824561df267b0cc962","size":91745460,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.811-x64.deb"},{"package":"mdatp","version":"101.75.43","architecture":"amd64","section":"devel","priority":"optional","installed_size":276698,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","libatomic1","libc6 (>= 2.23)","uuid-runtime","dmidecode","auditd","libselinux1","libfuse2","mde-netfilter"],"sha256":"4ae9bb8102a336f865aaf0ceab70b142622053192ef67c4d1bc4f5affd1c8669","size":111919766,"filename":"pool/main/m/mdatp/mdatp_101.75.43.amd64.deb"},{"package":"msopenjdk-17","version":"17.0.8-2","architecture":"amd64","section":"java","priority":"optional","installed_size":324732,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 17","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"42cf4a8de93da7d44cbf043b207f077797c88b9c4f6fc3ec10612901aa61f0b2","size":165069322,"filename":"pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-2_amd64.deb"},{"package":"powershell","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"a0d810fe381b77e4bfb99cc67f713f6d483545e94bdeb4150524c085cf20e2da","size":69463938,"filename":"pool/main/p/powershell/powershell_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.101-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350032,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.101","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.1)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.1)","dotnet-runtime-7.0 (>= 7.0.1)","dotnet-targeting-pack-7.0 (>= 7.0.1)","aspnetcore-runtime-7.0 (>= 7.0.1)"],"sha256":"eb3bf2a85ba09a791fc25a9dfe04d5131a24350f86af34cf15550defb7d26365","size":90604170,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.101-x64.deb"},{"package":"omi","source":"omi","version":"1.6.11.0","architecture":"amd64","section":"utils","priority":"optional","installed_size":4820,"maintainer":"Microsoft Corporation","description":"Open Management Infrastructure","depends":["libc6 (>= 2.3.6)","libpam-runtime (>= 0.79-3)"],"provides":"omi","sha256":"348d6f0a0eb31522b476ed2127e4f86ee838c151d8ac832507f5d855f727ab60","size":1884682,"filename":"pool/main/o/omi/omi-1.6.11-0.ssl_110.ulinux.x64.deb"},{"package":"msopenjdk-21","version":"21.0.0-1","architecture":"amd64","section":"java","priority":"optional","installed_size":352607,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 21","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"6fd0f193b52b70d9585f9fc17a936f43ff9a079ed481670cd073976cd205dcc7","size":176295410,"filename":"pool/main/m/msopenjdk-21/msopenjdk-21_21.0.0-1_amd64.deb"},{"package":"moby-engine","version":"19.03.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":106344,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.3.9)","moby-runc (>= 1.0.0~rc10)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)","libseccomp2 (>= 2.1.0)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"02b7a3fe3c6792adf0f5d9c5c839f1f4f64f0c5e94e01093a6a6fe2fd32c2233","size":22701568,"filename":"pool/main/m/moby-engine/moby-engine_19.03.15+azure-1_amd64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.520-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228838,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.520","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"320d09a1c12ad84961cd151fdbf32e885f678eb42bc24e1f6cfa902025fd68b5","size":88849892,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.520-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.20 Microsoft.NETCore.App 3.1.20","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.20)","dotnet-runtime-deps-3.1 (>= 3.1.20)"],"sha256":"b73687da9c7bc457089d120c4f3cb687e4bbba06bc060ce8ff194bd3d3bfb545","size":21925522,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.20-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.18-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.18","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"24079bf09fc03151279b13f00ec7fd91cf7ec732d78727ae741cf0d708665c2c","size":2792,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.18-x64.deb"},{"package":"moby-compose","version":"2.16.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":46220,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"012ae97f71917974a18379d04dd18150431f7cb9a5db5e04584e8ee4c4faf3ec","size":10169662,"filename":"pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.29-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.29 3.1.29","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.29)","libc6"],"sha256":"b9c9d07b5cf5d7783b387c67332fcb3356f445a2c21ca54bd15c0f598e5db436","size":120826,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.29-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68431,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.15","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.15)","dotnet-runtime-deps-6.0 (>= 6.0.15)"],"sha256":"06c1d3b8bd5657d0874fd729658659ad614176f7fa04e164f9dc785fcc9596e5","size":23080224,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.15-x64.deb"},{"package":"msft-identity-broker","source":"msft-identity-broker","version":"0.0.20211217~dev.1","architecture":"amd64","section":"java","priority":"optional","installed_size":83678,"maintainer":"vsts","description":"msft-identity-broker","depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"sha256":"bab8e21f461a64ec24fffa77d1c174278b27d37c143f7b488d8bf25d4b9424cb","size":77279776,"filename":"pool/main/m/msft-identity-broker/msft-identity-broker_0.0.20211217~dev.1_amd64.deb"},{"package":"libiothsm-std","version":"1.1.15-1","architecture":"amd64","section":"devel","priority":"optional","installed_size":4509,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT standard mode HSM lib","depends":["libssl1.1"],"provides":"libiothsm","sha256":"0ecba2f0103f3b53f639db55cb310b65667452b5d646926354d53bcf16b3ca4a","size":473412,"filename":"pool/main/libi/libiothsm-std/libiothsm-std_1.1.15-1_amd64.deb"},{"package":"azcmagent","version":"1.26.02210.615","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"c7ef2f69d6b0486a0088d524576f8ee91cbb90a54c4560cb49215fe0db19756d","size":53683134,"filename":"pool/main/a/azcmagent/azcmagent_1.26.02210.615_amd64.deb"},{"package":"moby-buildx","version":"0.8.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":67216,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"9fd0481a56296898268892396ad63fd88cf6d0d9e650b05092a7ddc8500b61f0","size":23112352,"filename":"pool/main/m/moby-buildx/moby-buildx_0.8.0+azure-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"2.7.3188-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"5845b74b3f0ac65102718e6a072cba6cd3eddbeb3ed3d6d0e0e4f6265287f1dd","size":167345404,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_2.7.3188-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27377,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.9","homepage":"https://github.com/dotnet/core","sha256":"013256f409694381c6fb4dc00177e901e26078cd3ad0c478ccb681b4912f9817","size":2124346,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.9-x64.deb"},{"package":"aadsshlogin-selinux","version":"1.0.020950001","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for AAD NSS and PAM extensions.","conflicts":["aadlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"9b6ab8b9c98bb3845819842de5158fd910b1d061b890749b49efe0d26cedb467","size":2374,"filename":"pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.020950001_amd64.deb"},{"package":"aziot-identity-service","version":"1.4.5-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":18866,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Identity Service and related services","homepage":"https://github.com/azure/iot-identity-service","conflicts":["iotedge","libiothsm-std"],"depends":["libc6 (>= 2.29)","libgcc-s1 (>= 4.2)","libssl1.1 (>= 1.1.0g)","libtss2-esys0 (>= 2.3.1)"],"sha256":"eb6a43a875b392d2a3013c9cafdb913aa7121322769233072aab0cf26371c438","size":4109284,"filename":"pool/main/a/aziot-identity-service/aziot-identity-service_1.4.5-1_amd64.deb"},{"package":"aspnetcore-runtime-5.0","version":"5.0.8-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":18551,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-5.0 (>= 5.0.8)"],"sha256":"c166ae2b979361d5bd6ae28735c19e071790fd14a88e2dc2ada370fbfceccc13","size":6085572,"filename":"pool/main/a/aspnetcore-runtime-5.0/aspnetcore-runtime-5.0.8-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.16 5.0.16","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.16)","libc6"],"sha256":"435049901ac1e2010f576db4b376f2f0b8541f34da202c2e2741e4a8f03a9617","size":140480,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.16-x64.deb"},{"package":"moby-engine","version":"20.10.20+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":86226,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"25ab605af59493188d1ec43afe3079dc1f00c80a086531a849d5e7cbfab2f3bb","size":20497760,"filename":"pool/main/m/moby-engine/moby-engine_20.10.20+azure-ubuntu20.04u1_amd64.deb"},{"package":"azcmagent","version":"1.31.02356.952","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"7c93aff6e5b62413727e391e666fd857be0d76b8e6b3119dd5e9c94329c5bd28","size":54290410,"filename":"pool/main/a/azcmagent/azcmagent_1.31.02356.952_amd64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.5312-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"e6ca931e3c33ef55ada53058ec62416516965fcb3f0bfd8377303a8a97cfcbbc","size":156812136,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5312-1.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.8","homepage":"https://github.com/dotnet/core","sha256":"8538163055e1112654548c1ffb2acf2bd54bf73ce25e5aa4594345ef306410c7","size":2117782,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.8-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.21","homepage":"https://github.com/dotnet/core","sha256":"845a4dcdf7cfef468f114df064ddf0d91df3339e8fa81a4d642bdcb9b69918b0","size":3516354,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.21-1_amd64.deb"},{"package":"moby-cli","version":"20.10.18+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":49828,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"6517c2b485ebd5f9431a263692da4d415222a845d7553cf4645d475d953f2def","size":9652860,"filename":"pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-7.0","version":"7.0.8-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":9,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 7.0.8","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"c6487b48e2118900cffeed91d67d9012f4e1e114c8c48fb2f01ad6526b6ebb01","size":2890,"filename":"pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.8-x64.deb"},{"package":"azapi2azurerm","version":"1.3.0","architecture":"amd64","section":"default","priority":"optional","installed_size":20744,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3be8889ef4a2bc388927a8179644551dd2ee00ef0c1c17975c839f6e1882118b","size":6716362,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-1.3.0-1-amd64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27356,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"e6ee3b8d371697a07a3a88480ef620b173c61ef5e03c6fb159d91cd906e9cd86","size":2123508,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.0-x64.deb"},{"package":"mystikos","version":"0.9.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"c5bb8a03a650a3719fc19fa3d3a879fbbebe5ecfedef6db091215fd517244df1","size":4436802,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.9.0-x86_64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.24-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11750,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.24)"],"sha256":"148be51af16984cf17386ec477d9a3903670cca73a7f25443ec7b1d66ca22c36","size":1315226,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.24-1_amd64.deb"},{"package":"mdatp","version":"101.98.89","architecture":"amd64","section":"devel","priority":"optional","installed_size":332405,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"582d1b94508d2d84432e1e4e049d6dbc712cca437ac82a2f25650703843a2f24","size":125131640,"filename":"pool/main/m/mdatp/mdatp_101.98.89.amd64.deb"},{"package":"moby-runc","version":"1.0.0+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":20329,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"ea515a80936dfec4ab07d9f37709d3074922feff5d10881f8dfecafc3e544ff2","size":6679756,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0+azure-1_amd64.deb"},{"package":"msopenjdk-11","version":"11.0.20-1","architecture":"amd64","section":"java","priority":"optional","installed_size":317734,"maintainer":"Microsoft Package Maintainers ","description":"Microsoft Build of OpenJDK 11","depends":["ca-certificates","java-common","libc6","zlib1g"],"recommends":["libasound2","libx11-6","libfontconfig1","libfreetype6","libxext6","libxi6","libxrender1","libxtst6","fonts-dejavu-core","fonts-dejavu-extra"],"provides":"java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless","sha256":"f5dd608c47a122ba604277b10d19d76dee2562d86b670402afe568f219d946a8","size":166768998,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-1_amd64.deb"},{"package":"mystikos","version":"0.8.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"637c845250a0a9c608a948672bfc60e1f810f36d0df33236fa711fcded549b9e","size":4373656,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.8.0-x86_64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4785-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"d337b71bebb235a7e8a19cd961fdb2bd8c82d512755bb965dfb868880d5ff589","size":125664952,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4785-1.deb"},{"package":"moby-compose","version":"2.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":43500,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"6c802b98ea7ec047243ee7cfa1911ceb225c7aef8bdba133ee292d17724a2e41","size":9564136,"filename":"pool/main/m/moby-compose/moby-compose_2.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.109-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":350083,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.109","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"bc23f4fa578ffe9206fc1cb4c299e04f890994ed3672571840e5e1d49abfcd57","size":90667862,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.109-x64.deb"},{"package":"msodbcsql18","version":"18.2.1.1-1","architecture":"amd64","section":"database","installed_size":0,"maintainer":"Microsoft SQL ODBC Team ","description":"ODBC Driver for Microsoft(R) SQL Server(R)","conflicts":["libodbc1-utf16","odbcinst-utf16","odbcinst1debian2-utf16","unixodbc-utf16"],"depends":["libc6 (>= 2.19)","libstdc++6 (>= 4.8.2)","libkrb5-3","openssl","debconf (>= 0.5)","unixodbc (>= 2.3.1)","odbcinst"],"sha256":"38bfecba0dfde7fd37c32e958bcf91321e5b7868ef0bd4d123b2f2e8c1252afc","size":752844,"filename":"pool/main/m/msodbcsql18/msodbcsql18_18.2.1.1-1_amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.5198-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6d9ef3a2caa939749d9fa94af1f515878843591103b9e1ffaac6b6392d70641f","size":155432416,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5198-1.deb"},{"package":"moby-engine","version":"23.0.6+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":97207,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"3e79c2699a41d60544f79848fd8dcc97329f24114cff4619bcb646bb65f1925a","size":22804998,"filename":"pool/main/m/moby-engine/moby-engine_23.0.6+azure-ubuntu20.04u2_amd64.deb"},{"package":"mdatp","version":"101.00.75","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"b07fecc2ba406124fb70454b202acda539971b81ed2f0bcb45360c8d743a951e","size":16305902,"filename":"pool/main/m/mdatp/mdatp_101.00.75.amd64.deb"},{"package":"moby-engine","version":"20.10.15+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95681,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"07b58269da94bce5fbbc406a910f365292f2149ce48eda815aeb758f48609907","size":20926788,"filename":"pool/main/m/moby-engine/moby-engine_20.10.15+azure-1_amd64.deb"},{"package":"moby-runc","version":"1.1.4+azure-ubuntu20.04u2","architecture":"amd64","section":"admin","priority":"optional","installed_size":14263,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.5.0)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"fb7dced8af436496de783c2194bfef410c56e156bdff60240203e9361c003a1f","size":5341004,"filename":"pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu20.04u2_amd64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.1","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"30aef6a9e6d3f0ddfdba91ad2f1c2e3d35afdd88e8fbfffcf17cefe01c55bb10","size":2654,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.1-x64.deb"},{"package":"dotnet-runtime-deps-5.0","version":"5.0.14-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-5.0 5.0.14","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"641bed77ff67c69c7789b7502d5287ddf4d7ee9856f7f4bddf391a9c444d8d11","size":2656,"filename":"pool/main/d/dotnet-runtime-deps-5.0/dotnet-runtime-deps-5.0.14-x64.deb"},{"package":"moby-buildx","version":"0.11.2+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76294,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"28b5bb9ce627cf98273b8dbfa8cb931d06a7b65a6eef7093400d301b4623b935","size":28218446,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-host","version":"6.0.9-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.9","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"76cf3687d7402eef8425db6f75c13395664c418c3c8c0f66f32c9cce724edbaf","size":55690,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.9-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.7 3.1.7","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.7)","libc6"],"sha256":"ba43de611f4179cb3ccf68194890920aa2b97dcf4f24d4861f9500afc8d87aca","size":121042,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.7-x64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.2.0","architecture":"amd64","section":"java","priority":"optional","installed_size":83741,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"2fc3bc221bb28c45ada5ac1d5ca3a24f002432860069bd0a79f1363dd5b3dddd","size":77328246,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.2.0_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.210-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222047,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.210","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.13)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.13)"],"sha256":"e9c3e1c1e73a19d0a792bbf7f76c5a161dd69c0912cfa587464a8c8f12f7c153","size":57223366,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.210-x64.deb"},{"package":"msopenjdk-11","version":"11.0.10+9-1","architecture":"amd64","section":"java","priority":"extra","installed_size":316427,"maintainer":"Microsoft","description":"OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft","homepage":"https://www.microsoft.com","depends":["ca-certificates","fonts-dejavu","java-common","libasound2","libc6","libfreetype6","libfontconfig1","libx11-6","libxext6","libxi6","libxrender1","libxtst6","zlib1g"],"provides":"java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless","vendor":"Microsoft","license":"GPL-2.0+CE","sha256":"34a27d9fce24ecec7787b67d22bd8578a69bd6cca9585a70ba3372751a2af515","size":193172368,"filename":"pool/main/m/msopenjdk-11/msopenjdk-11_11.0.10+9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.12-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168871,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c970cf3cfc68b7394c889f0df1b3ac0ca8c88a9cccea1a425bba239a392058ae","size":68202122,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.12-1.deb_amd64.deb"},{"package":"moby-engine","version":"20.10.14+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"87d71671681397891d19c022bf578f0696abb43005b7ba1cc9cbb8f102792aff","size":20903180,"filename":"pool/main/m/moby-engine/moby-engine_20.10.14+azure-1_amd64.deb"},{"package":"moby-cli","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":61008,"maintainer":"Microsoft ","description":"Docker container platform (client package)","homepage":"https://github.com/docker/cli","conflicts":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["libc6 (>= 2.4)"],"recommends":["ca-certificates","git","moby-buildx","pigz","xz-utils"],"suggests":["moby-engine"],"replaces":["docker","docker-ce","docker-ce-cli","docker-ee","docker-ee-cli","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"b7bf28039571e04bf00ad0942ac4c1ecf509a196171a1a31687913674a033726","size":10605616,"filename":"pool/main/m/moby-cli/moby-cli_20.10.13+azure-1_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.402-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336567,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.402","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.10)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.10)","dotnet-apphost-pack-6.0 (>= 6.0.10)","dotnet-runtime-6.0 (>= 6.0.10)","aspnetcore-targeting-pack-6.0 (>= 6.0.10)"],"sha256":"d054c29f0d6ac3eb208636db5b9c603ef7368c3bd74ab28f678d58017b0f7789","size":86580584,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.402-x64.deb"},{"package":"powershell-lts","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"88a8e3fc3bf5899d180a3c6932fc1f16aec744d142e468cd9c503cb81981560e","size":70364236,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.10-1.deb_amd64.deb"},{"package":"dotnet-host","version":"6.0.20-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":259,"maintainer":".NET Team ","description":"Microsoft .NET Host - 6.0.20","homepage":"https://github.com/dotnet/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"a5dfd0e6fa48287c827a3370896c76afadf82a75696447809ee2456d71e30890","size":55820,"filename":"pool/main/d/dotnet-host/dotnet-host-6.0.20-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.4899-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"6a2903ed2616c7e00935c25376801244c01e1a4b41f369945f13a73196871385","size":228283580,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4899-1.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.119-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314323,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.119","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.19)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.19)","dotnet-apphost-pack-6.0 (>= 6.0.19)","dotnet-runtime-6.0 (>= 6.0.19)","aspnetcore-targeting-pack-6.0 (>= 6.0.19)"],"sha256":"012290bff29f75dadc362e8844c7cac4be6a392a62eb630ba3e78701c8c9cc73","size":78874786,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.119-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":336560,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.403","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"e2e423e97d6571023053e0ced24a122b1ee09c82ecfe2b093204f1f0a090e6fb","size":86614876,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.403-x64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11071,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.11","homepage":"https://github.com/dotnet/core","sha256":"9c5c3a3816280a63c5635c447b71b110af8ed95834befee9205e72ad84e37b3b","size":3524114,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.11-x64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.2996-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"287e138165c35688a148097cb70abb64ffc82045f61e10d250b22c95b734ed43","size":204035284,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.2996-1.deb"},{"package":"virtualclient","version":"1.11.0","architecture":"amd64","maintainer":"Virtual Client Team ","description":"VirtualClient, the open sourced workload automation.","sha256":"11eec246fca29d7666d13cd6bfa1c629536685570a1b60b0bdeec635341cc5d1","size":44771040,"filename":"pool/main/v/virtualclient/virtualclient_1.11.0_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":331330,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.306","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.11)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.11)","dotnet-apphost-pack-6.0 (>= 6.0.11)","dotnet-runtime-6.0 (>= 6.0.11)","aspnetcore-targeting-pack-6.0 (>= 6.0.11)"],"sha256":"41eec4c727cb18b1f14cf442927e66009b8ac56c4c2d003bcff8ff5871845862","size":85091884,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.306-x64.deb"},{"package":"defender-iot-micro-agent","version":"4.2.7","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent-edge"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","libpcap0.8","dmidecode"],"sha256":"6496680a7582d60e63818967f2cd98aee775ba721ae728343362dd4268960e2f","size":499286,"filename":"pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-20.04-amd64-4.2.7.deb"},{"package":"powershell","version":"7.2.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189109,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"fa7a2b2063063103682abec757552e79ec8fdb820fcfd10ffde66bdeeabe7488","size":70363920,"filename":"pool/main/p/powershell/powershell_7.2.10-1.deb_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.30-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71117,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.30 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.30)"],"sha256":"febbc996b9bb461a2ea46eea74e4a5e64cb58240e1d200277c22d7da41b96052","size":21906200,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.30-x64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":406,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.15 3.1.15","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.15)","libc6"],"sha256":"fc4667c3d1a25fd4ce10c08af3570f5d1dcf7821687755e7e7823d151955abd4","size":120738,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.15-x64.deb"},{"package":"defender-iot-micro-agent-edge","version":"3.12.2","architecture":"amd64","priority":"optional","essential":"no","maintainer":"Microsoft","description":"Microsoft Defender for IoT Micro Agent","conflicts":["defender-iot-micro-agent"],"depends":["libuv1","curl","libssl1.1","uuid-runtime","sudo","aziot-edge","libpcap0.8","dmidecode"],"sha256":"a8cd4903a9dc32de6309cbda75e3f447c5eae436b6f03d9e1aa31706436202d7","size":274156,"filename":"pool/main/d/defender-iot-micro-agent-edge/defenderiot-ubuntu-20.04-amd64-edge-3.12.2.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.411-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":189651,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.411","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.17)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.17)","aspnetcore-runtime-3.1 (>= 3.1.17)"],"sha256":"16425094e8185a26d5d517f8fad2ceeff091e75d9352d1ba5e4b6e5f2bcba020","size":48228346,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.411-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.10","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"794cbab5578ede2af54c14bef3691bd475f890e034e98465f85c8c93acc2157e","size":2812,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.10-x64.deb"},{"package":"moby-engine","version":"20.10.13+azure-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":95670,"maintainer":"Microsoft ","description":"Docker container platform (engine package)","homepage":"https://github.com/moby/moby","conflicts":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"depends":["moby-containerd (>= 1.4.3)","moby-runc (>= 1.0.2)","libc6 (>= 2.8)","libdevmapper1.02.1 (>= 2:1.02.97)"],"recommends":["apparmor","ca-certificates","iptables","kmod","moby-cli","pigz","xz-utils"],"suggests":["aufs-tools","cgroupfs-mount | cgroup-lite","git"],"replaces":["docker","docker-ce","docker-ee","docker-engine","docker-engine-cs","docker.io","lxc-docker","lxc-docker-virtual-package"],"sha256":"0911fe2a2ed038205282623bc7e3897ba7d93126aec7edca4464fd6c134a2aea","size":20916908,"filename":"pool/main/m/moby-engine/moby-engine_20.10.13+azure-1_amd64.deb"},{"package":"mdatp","version":"101.98.05","architecture":"amd64","section":"devel","priority":"optional","installed_size":305796,"maintainer":"Microsoft Defender Group ","description":"Microsoft Defender (Production)","depends":["libc6 (>= 2.23)","uuid-runtime","auditd","mde-netfilter"],"sha256":"7e1ba007e40c4653ca8b8bdf55e29600a08ac87217267e3b78417dd8a0be1cf3","size":119520316,"filename":"pool/main/m/mdatp/mdatp_101.98.05.amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.121-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":314335,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.121","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.21)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.21)","dotnet-apphost-pack-6.0 (>= 6.0.21)","dotnet-runtime-6.0 (>= 6.0.21)","aspnetcore-targeting-pack-6.0 (>= 6.0.21)"],"sha256":"ea0ec0cc9ae4f25bb30f5f4c7704875a62d54656ee3cb1e22a3c8a4d97f24489","size":78873546,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.121-1_amd64.deb"},{"package":"azure-functions-core-tools-3","version":"3.0.3388-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v3","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"df05e878a11e12d9538c5c1f3f9f05b639c5340770453affbf5a41cea830a486","size":208741020,"filename":"pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.3388-1.deb"},{"package":"aspnetcore-targeting-pack-7.0","version":"7.0.9-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":13094,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-7.0 (>= 7.0.9)"],"sha256":"5f6bc5506a83dd7f0835bc4f9e1213094981f3fb60e639e321c78a73e25a1ef9","size":1499018,"filename":"pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.9-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.21-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.21","homepage":"https://github.com/dotnet/core","sha256":"6fbb4309a0fff8a7d33f8641fb544c310bb1d68d1de88a6d9e4aa93c151a819f","size":42368,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.21-x64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.19-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68459,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.19","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.19)","dotnet-runtime-deps-6.0 (>= 6.0.19)"],"sha256":"2e635f77893cd7a802297f3fe00257d3792befd579820ce1132923fd27dfee95","size":22887618,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.19-x64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4915-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"c081e147deead98682d2ac4c05010813b67dd4f1b82fa4e66b22c159854c9ae2","size":158709156,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4915-1.deb"},{"package":"moby-buildx","version":"0.11.0+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":76246,"maintainer":"Microsoft ","description":"A Docker CLI plugin for extended build capabilities with BuildKit","homepage":"https://github.com/docker/buildx","conflicts":["docker-ce","docker-ee"],"recommends":["moby-cli"],"sha256":"444825d0cb85439fb016f13acf26033d270c34ee7160d9a99fa17d748d8603e9","size":28216826,"filename":"pool/main/m/moby-buildx/moby-buildx_0.11.0+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-apphost-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":10786,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 5.0.0","homepage":"https://github.com/dotnet/core","sha256":"1f20833937b8ed1b43a292fdb0cce8bceb315fcd572768e4cfc1f97d4486d2bb","size":3414476,"filename":"pool/main/d/dotnet-apphost-pack-5.0/dotnet-apphost-pack-5.0.0-x64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70801,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.1","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.1)","dotnet-hostfxr-7.0 (>= 7.0.1)"],"sha256":"c26e9d6bfb512806e89b4f2094964915c206b62be1bae7bf5efb69c6f090a305","size":23188750,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.1-x64.deb"},{"package":"azcmagent","version":"1.23.02105.466","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl","systemd","passwd"],"package_type":"deb","sha256":"17f9602fa7199ca006776c2c0688bfba291242292db0b0528f249af5933b647a","size":53831532,"filename":"pool/main/a/azcmagent/azcmagent_1.23.02105.466_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.303-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227352,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.303","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"7a7ca82a5c100d35d52cad7b4525efb95e08039d19a99dd36efaf2ec15805f15","size":58878538,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.303-x64.deb"},{"package":"dotnet-runtime-deps-6.0","version":"6.0.16-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Team ","description":"dotnet-runtime-deps-debian 6.0.16","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","libc6","libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"dab9c7f9d0e4a250212c5bb52fda8dd85f965a0e81246e6b41c3a8be54195e0b","size":2798,"filename":"pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.16-x64.deb"},{"package":"azure-ai-vision-dev-image-analysis","version":"0.13.0~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":514,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Developer Package","depends":["azure-ai-vision-dev-common (= 0.13.0~beta.1)","azure-ai-vision-runtime-image-analysis (= 0.13.0~beta.1)"],"sha256":"65e0a235170d0e504a0a4b15511b9e46327edd85edb997b5c484bf54ba114e75","size":80078,"filename":"pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.13.0~beta.1-Linux.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.13-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19873,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.13)"],"sha256":"bbf1f452f980f7807b093746972e745a9c804da606e42e9250b1515a2179b5d7","size":6612406,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.13-x64.deb"},{"package":"powershell-preview","version":"7.4.0-preview.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176662,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"2eeaa3c725e80f22d6aa6147c4d0721be2ed17340fcb706fea47ebe9f0033c33","size":70611474,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.6-1.deb_amd64.deb"},{"package":"dotnet-apphost-pack-6.0","version":"6.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11062,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 6.0.0","homepage":"https://github.com/dotnet/core","sha256":"86602d9ba581ce2deea151abb28e56048cea0cce4aa332f28fcfc82164b77a93","size":3517456,"filename":"pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.0-x64.deb"},{"package":"dotnet-apphost-pack-7.0","version":"7.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":11276,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Host 7.0.1","homepage":"https://github.com/dotnet/core","sha256":"b7cbcd00def1bbab3cb16f172721a42ab97ce9ef97284d92185197ae77760a3e","size":3521274,"filename":"pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.1-x64.deb"},{"package":"azure-ai-vision-runtime-image-analysis","version":"0.8.1~beta.1","architecture":"amd64","section":"devel","priority":"optional","installed_size":676,"maintainer":"vision-sdk@microsoft.com","description":"Azure AI Vision Image Analysis Runtime Package","depends":["azure-ai-vision-runtime-core","azure-ai-vision-runtime-core-media"],"sha256":"4b4190c608f71b68ccd64c462a67d7f1d451e2c0a4bd2a6d79d1b58ef9774856","size":147266,"filename":"pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.8.1~beta.1-Linux.deb"},{"package":"aziot-edge","version":"1.2.9-1","architecture":"amd64","section":"admin","priority":"extra","installed_size":23938,"maintainer":"Azure IoT Edge Devs","description":"Azure IoT Edge Module Runtime","homepage":"https://github.com/azure/iotedge","depends":["adduser","ca-certificates","hostname","aziot-identity-service (= 1.2.6-1)","sed"],"sha256":"421ed2073ed78c2aff4b798fa6671c2c222ad69dd945b3150536ddddac07adef","size":5770364,"filename":"pool/main/a/aziot-edge/aziot-edge_1.2.9-1_amd64.deb"},{"package":"powershell-lts","version":"7.2.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187014,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"ff202d7a1773806df4d150f860f91028cd318ff5557b99ef43e7b07002d784df","size":69468394,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.6-1.deb_amd64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.400-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227600,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.400","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.9)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.9)"],"sha256":"e775a3dc67bd1a8a561aba1e5db71709fefc0a0f87f4b1ed17542388af03d9ab","size":59143318,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.400-x64.deb"},{"package":"dotnet-targeting-pack-6.0","version":"6.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":27360,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Ref 6.0.3","homepage":"https://github.com/dotnet/core","sha256":"6724a88dbbc4a9468491cb3b6c56f805a1664f17cfc141adba33b0f72fed8238","size":2126034,"filename":"pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.3-x64.deb"},{"package":"mssql-zulu-jre-11","version":"11.40.16-1","architecture":"amd64","section":"java","priority":"optional","installed_size":114997,"maintainer":"Microsoft Data Platform Group ","description":"Azul System Zulu JRE for SQL Server. Azul Zulu is an enterprise-quality, commercialized build of OpenJDK. For information about Azul Zulu Open JDK visit http://www.azul.com/zulu.","depends":["java-common","libasound2","libc6","libgcc1","libx11-6","libxau6","libxcb1","libxdmcp6","libxext6","libxi6","libxrender1","libxtst6","zlib1g","libfontconfig1"],"sha256":"151178cffd4aec996d1fd6e2464e0e3a03d60bccb1b23b397454b3ab5a7d1a0e","size":39715442,"filename":"pool/main/m/mssql-zulu-jre-11/mssql-zulu-jre_11.40.16-1_amd64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71100,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.11 Microsoft.NETCore.App 3.1.11","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.11)","dotnet-runtime-deps-3.1 (>= 3.1.11)"],"sha256":"4574cb0172cb8ce0bc5f99004f983a833086d44debfc579dba2f55a094c57c2d","size":21399282,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.11-x64.deb"},{"package":"powershell-preview","version":"7.2.0-preview.10-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":162968,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"28434376d4a14f42805578d49c08d85611de8d2984b868c8317bca2e68d33434","size":65979312,"filename":"pool/main/p/powershell-preview/powershell-preview_7.2.0-preview.10-1.deb_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.23-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":408,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.23 3.1.23","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.23)","libc6"],"sha256":"cdaaa6c1cc638e1bf330d0c7e9446f5910fbc5dde5ed7b6ad5b68e2d3f9c2203","size":120782,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.23-x64.deb"},{"package":"osconfig","version":"1.0.2.20220404","architecture":"amd64","section":"devel","priority":"optional","installed_size":4317,"maintainer":"osconfigsupport@microsoft.com","description":"Azure OSConfig","depends":["liblttng-ust0 (>= 2.7)"],"suggests":["aziot-identity-service (>= 1.2.0)"],"sha256":"9330d1120c44e00a91ebc75274b4e10a7f305adfec7fcaf21165fd79cf38408d","size":1512876,"filename":"pool/main/o/osconfig/osconfig_1.0.2.20220404_focal_x86_64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68331,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.7 Microsoft.NETCore.App 5.0.7","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.7)","dotnet-hostfxr-5.0 (>= 5.0.7)"],"sha256":"767af7166d335de75bc1ea12f4b12c3eafe1cdae1977e5d9626fb7a1298fd07d","size":21787726,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.7-x64.deb"},{"package":"powershell","version":"7.2.14-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":168902,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"89c217d853228a7a2d60620da25b9dda36e8aa87a2714b9082b84359bb30da99","size":68347216,"filename":"pool/main/p/powershell/powershell_7.2.14-1.deb_amd64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.100-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":312305,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.100","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.0)","dotnet-apphost-pack-6.0 (>= 6.0.0)","dotnet-runtime-6.0 (>= 6.0.0)","aspnetcore-targeting-pack-6.0 (>= 6.0.0)"],"sha256":"f792e43cf164d2d26732ca187969ba60d1b5f8f3ef820a587af023c6f45615c9","size":77916560,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.100-x64.deb"},{"package":"powershell","version":"7.3.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":196786,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"c23b461a443ab87f9c11ce69fb625a01d7fd141f30ca42bec7a86cefed79ebac","size":71719252,"filename":"pool/main/p/powershell/powershell_7.3.1-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.306-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":366974,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.306","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.9)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.9)","dotnet-runtime-7.0 (>= 7.0.9)","dotnet-targeting-pack-7.0 (>= 7.0.9)","aspnetcore-runtime-7.0 (>= 7.0.9)"],"sha256":"054944c3f1c729ebd4fc08bd58a68bf759e6878d8729815ee59145e945e59857","size":96543430,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.306-x64.deb"},{"package":"aspnetcore-targeting-pack-6.0","version":"6.0.14-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":11744,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-6.0 (>= 6.0.14)"],"sha256":"a7fe468a27a9efb9f56f65ce563eb582f064e486f566710c3ebb680ce3a2386d","size":1315118,"filename":"pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.14-x64.deb"},{"package":"powershell","version":"7.2.11-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189132,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"5bb0f368f4a177f2790789a57102b3d22288a3fa98e86e8f48b43b8c9705497b","size":70502394,"filename":"pool/main/p/powershell/powershell_7.2.11-1.deb_amd64.deb"},{"package":"mystikos","version":"0.11.0","architecture":"amd64","priority":"optional","maintainer":"mystikos@service.microsoft.com","description":"Mystikos","depends":["libsgx-enclave-common (>=2.3.100.46354-1)","libsgx-dcap-ql (>=1.0.100.46460-1.0)","libsgx-dcap-ql-dev (>=1.0.100.46460-1.0)"],"sha256":"e4ddec438e39a6eccb041704d3d7881cb5de62ca4be860d2182bda98c9404222","size":5664532,"filename":"pool/main/m/mystikos/Ubuntu-2004_mystikos-0.11.0-x86_64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.807-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241157,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.807","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.19)","aspnetcore-runtime-2.1 (>= 2.1.19)"],"sha256":"394c0f1ae41df719835e1b9f43ff95750b2b536febb327b51adce9d8fee15f62","size":92101918,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.807-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.113-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":313399,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.113","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.13)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.13)","dotnet-apphost-pack-6.0 (>= 6.0.13)","dotnet-runtime-6.0 (>= 6.0.13)","aspnetcore-targeting-pack-6.0 (>= 6.0.13)"],"sha256":"829fa22bb13f41075e7a253b2588d9848c512fa59c9594fd367561180b9e0ea1","size":78501022,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.113-x64.deb"},{"package":"powershell-lts","version":"7.2.7-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":187019,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"dc85567c9a52e16ebed727f41389de0b8e3275437e4b7a3905bc894f359a24f9","size":69460950,"filename":"pool/main/p/powershell-lts/powershell-lts_7.2.7-1.deb_amd64.deb"},{"package":"dotnet-sdk-7.0","version":"7.0.203-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":357031,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 7.0.203","homepage":"https://github.com/dotnet/core","depends":["aspnetcore-targeting-pack-7.0 (>= 7.0.5)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-7.0 (>= 7.0.5)","dotnet-runtime-7.0 (>= 7.0.5)","dotnet-targeting-pack-7.0 (>= 7.0.5)","aspnetcore-runtime-7.0 (>= 7.0.5)"],"sha256":"2e1000a54d809da2b49d0fbfacb4c9eca33805e0334be8fa34815ab17814fead","size":91833094,"filename":"pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.203-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.812-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":241219,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.812","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:4.1.1)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.24)","aspnetcore-runtime-2.1 (>= 2.1.24)"],"sha256":"24b7b07cf5de2bbf1e8fd020dcda3426589c05e4eb92c5d572c3ce9846beeddd","size":91609078,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.812-x64.deb"},{"package":"mdatp","version":"100.90.70","architecture":"amd64","section":"devel","priority":"optional","installed_size":49431,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libproxy1v5","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"9ae09e3dca009b6975321bc7d57c8b1a1586626f91dd9fedf6faeb6532d72c50","size":15945054,"filename":"pool/main/m/mdatp/mdatp_100.90.70.amd64.deb"},{"package":"azure-functions-core-tools","version":"4.0.4653-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"171aeb6bc5d33779abe3e2eddc99474eef8e3ae8151cd3a9115cb34d8b4d3338","size":124365596,"filename":"pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4653-1.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68316,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.1 Microsoft.NETCore.App 5.0.1","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.1)","dotnet-hostfxr-5.0 (>= 5.0.1)"],"sha256":"eb4ddf15455e10ef799558292c732e20ccc6cc00b43a1e0b8175c5f4f0dbbe90","size":21672428,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.1-x64.deb"},{"package":"dotnet-sdk-6.0","version":"6.0.410-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":337370,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 6.0.410","homepage":"https://github.com/dotnet/core","depends":["dotnet-targeting-pack-6.0 (>= 6.0.18)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-6.0 (>= 6.0.18)","dotnet-apphost-pack-6.0 (>= 6.0.18)","dotnet-runtime-6.0 (>= 6.0.18)","aspnetcore-targeting-pack-6.0 (>= 6.0.18)"],"sha256":"d714b88755d977894f1485c36b44a1c5f044ecfb329e6c04da9435faea474465","size":86806086,"filename":"pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.410-x64.deb"},{"package":"azure-functions-core-tools-2","version":"2.7.2883-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v2","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools","azure-functions-core-tools-2"],"replaces":["azure-functions-core-tools","azure-functions-core-tools-2"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"bb40f43fe2210a8c8c00c295c85501ac849538750306645639e4eb164882f993","size":165947920,"filename":"pool/main/a/azure-functions-core-tools-2/azure-functions-core-tools-2_2.7.2883-1.deb"},{"package":"azcmagent","version":"1.17.01931.118","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"6325d3110429e507691a25971a05b8c4a3110dde345fb24f355cd8765945d550","size":52441268,"filename":"pool/main/a/azcmagent/azcmagent_1.17.01931.118_amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.11-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68418,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.11","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.11)","dotnet-runtime-deps-6.0 (>= 6.0.11)"],"sha256":"e745e27dd7fbc813dcdffb896469807ed1a1a9323fbd81dd5c3af95a593e171c","size":22847074,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.11-x64.deb"},{"package":"dotnet-sdk-2.1","version":"2.1.526-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":228629,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 2.1.526","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.4)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.8)","dotnet-runtime-2.1 (>= 2.1.30)","aspnetcore-runtime-2.1 (>= 2.1.30)"],"sha256":"5acb3f643aace977e0b8e6f1d5414b16f3ec72caa8a5c3f8597bb34467152173","size":89325496,"filename":"pool/main/d/dotnet-sdk-2.1/dotnet-sdk-2.1.526-x64.deb"},{"package":"dotnet-hostfxr-2.1","version":"2.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":718,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 2.1.22 2.1.22","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 2.1.22)","libc6"],"sha256":"38ee581ebe6732de3b4a09b351ad6680bfb30a62aedd0d8cc9a100b81b413051","size":143754,"filename":"pool/main/d/dotnet-hostfxr-2.1/dotnet-hostfxr-2.1.22-x64.deb"},{"package":"azapi2azurerm","version":"0.0.0","architecture":"amd64","section":"default","priority":"extra","installed_size":20240,"maintainer":"henglu ","description":"A tool to migrate terraform resources from azapi to azurerm","homepage":"https://github.com/Azure/azapi2azurerm","vendor":"none","license":"MPL-2.0","sha256":"3294cb23f7013f939e6246eded6b3e85be150991aa85bc5d050d95d5be7a8cbf","size":6674858,"filename":"pool/main/a/azapi2azurerm/azapi2azurerm-0.0.0-1-amd64.deb"},{"package":"dotnet-runtime-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68402,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 6.0.7","homepage":"https://github.com/dotnet/core","depends":["dotnet-hostfxr-6.0 (>= 6.0.7)","dotnet-runtime-deps-6.0 (>= 6.0.7)"],"sha256":"6099c737128e6076793bd9e7d7076a1189fbcd79e99ece43b3a283b71072d387","size":23053200,"filename":"pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.7-x64.deb"},{"package":"sysmonforlinux","version":"1.3.0","architecture":"amd64","installed_size":58934,"maintainer":"Sysinternals ","description":"A system monitor based on eBPF, ported from Windows, that outputs events to Syslog","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 5)","libxml2 (>= 2.7.4)","libssl-dev","sysinternalsebpf (>= 1.2.0)"],"sha256":"f79ea8c2165edf2d067e46b61a804eaa87711071d3f307f62024a4cbdc8065ac","size":1772790,"filename":"pool/main/s/sysmonforlinux/sysmonforlinux_1.3.0_amd64.deb"},{"package":"dotnet-host","version":"5.0.15-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":233,"maintainer":".NET Team ","description":"Microsoft .NET Host - 5.0.15","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3e9f0cc103795cf8aaafdb0168ba7ec1f0763189642438455faa4b727e64e09c","size":52600,"filename":"pool/main/d/dotnet-host/dotnet-host-5.0.15-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.403-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":227503,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.403","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"eb71fc6cd5b1137f9a7d3b8bb3f38773a927a7e1438b990cdf72ae3049f97b29","size":58892974,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.403-x64.deb"},{"package":"aspnetcore-runtime-6.0","version":"6.0.2-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":19832,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-6.0 (>= 6.0.2)"],"sha256":"62d5edb2667273c90fca39f2bed842e0dd6aad2a66b848a53fa57852b041c173","size":6597956,"filename":"pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.2-x64.deb"},{"package":"aspnetcore-runtime-3.1","version":"3.1.29-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":17481,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-3.1 (>= 3.1.29)"],"sha256":"fd481d70bab41f4400425f4e3d8ec6c1079a6e45e865c83c3fb2d5b522fba29c","size":5771912,"filename":"pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.29-x64.deb"},{"package":"dotnet-runtime-3.1","version":"3.1.22-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":71115,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Runtime - 3.1.22 Microsoft.NETCore.App 3.1.22","homepage":"https://dot.net/core","depends":["dotnet-hostfxr-3.1 (>= 3.1.22)","dotnet-runtime-deps-3.1 (>= 3.1.22)"],"sha256":"240796de8929b597d89f200a4616568eb27171185205ccef480c2fbb1f77e5fb","size":21834512,"filename":"pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.22-x64.deb"},{"package":"dotnet-hostfxr-5.0","version":"5.0.1-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":436,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 5.0.1 5.0.1","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 5.0.1)","libc6"],"sha256":"6dbd073a452657fadb74e92ec5853eed163ab480f5b795d36b7413a3aaaa27d3","size":140822,"filename":"pool/main/d/dotnet-hostfxr-5.0/dotnet-hostfxr-5.0.1-x64.deb"},{"package":"powershell","version":"7.3.6-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":172207,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"9219bc276da261d6fd1bce5dcbf898466e70682ea2f17eabff85841fbe6c9e57","size":69106406,"filename":"pool/main/p/powershell/powershell_7.3.6-1.deb_amd64.deb"},{"package":"powershell-preview","version":"7.4.0-rc.1-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":176791,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"940ab39342e7222ab0b09aee1182bdc8909db10a57908f8b25f1a1b9817dc60a","size":70833626,"filename":"pool/main/p/powershell-preview/powershell-preview_7.4.0-rc.1-1.deb_amd64.deb"},{"package":"dotnet-runtime-7.0","version":"7.0.0-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":70798,"maintainer":".NET Team ","description":"Microsoft.NETCore.App.Runtime 7.0.0","homepage":"https://github.com/dotnet/core","depends":["dotnet-runtime-deps-7.0 (>= 7.0.0)","dotnet-hostfxr-7.0 (>= 7.0.0)"],"sha256":"e80ddae4ea254b74b1f0bc91a6ebdef405e57ec4bbee4dca96e7e0cad3510a34","size":23190380,"filename":"pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.0-x64.deb"},{"package":"dotnet-host","version":"3.1.26-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":145,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.26","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"3086468765ad4e9f4298a8494f0105e7de05df8f32629168ecd3c86f7ebe4945","size":32460,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.26-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.25-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.25","homepage":"https://github.com/dotnet/core","sha256":"89859d59a821026b2e4d4237e799da2d4ff8d8f2679d27bbbbbf3cf73424e4d6","size":42326,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.25-x64.deb"},{"package":"dotnet-host","version":"2.1.24-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":175,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 2.1.24","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"c77426b730cdf18db5d69641478667b838c98bbeef0fca45b58a85905d69a01b","size":36562,"filename":"pool/main/d/dotnet-host/dotnet-host-2.1.24-x64.deb"},{"package":"dotnet-sdk-5.0","version":"5.0.209-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":222002,"maintainer":"Microsoft ","description":"Microsoft .NET SDK 5.0.209","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.4.0)","dotnet-runtime-5.0 (>= 5.0.12)","netstandard-targeting-pack-2.1 (>= 2.1.0)","aspnetcore-runtime-5.0 (>= 5.0.12)","dotnet-targeting-pack-5.0 (>= 5.0.0)","aspnetcore-targeting-pack-5.0 (>= 5.0.0)","dotnet-apphost-pack-5.0 (>= 5.0.12)"],"sha256":"6d925dbfa3976f255dcf4db5b504f91a1465f1586b73d926a654fdb99e7e95b6","size":57063358,"filename":"pool/main/d/dotnet-sdk-5.0/dotnet-sdk-5.0.209-x64.deb"},{"package":"dotnet-runtime-deps-3.1","version":"3.1.4-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":26,"maintainer":".NET Core Team ","description":"dotnet-runtime-deps-3.1 3.1.4","homepage":"https://dot.net/core","depends":["libgcc1","libssl1.0.0 | libssl1.0.2 | libssl1.1","libc6","libicu | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52","zlib1g","libstdc++6","libgssapi-krb5-2"],"sha256":"b959b066afa9018179da74fe45e2561a459c4b0ef359e63dba3bf2c9ccca100d","size":2668,"filename":"pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.4-x64.deb"},{"package":"moby-runc","version":"1.0.0~rc92+azure-2","architecture":"amd64","section":"admin","priority":"optional","installed_size":18424,"maintainer":"Microsoft ","description":"CLI tool for spawning and running containers according to the OCI specification","homepage":"https://github.com/opencontainers/runc","conflicts":["moby-engine (<= 3.0.10)","runc"],"depends":["libc6 (>= 2.14)","libseccomp2 (>= 2.4.1)"],"suggests":["moby-containerd"],"provides":"runc","replaces":["runc"],"sha256":"90adcb51c1ec71706a363f3dc18667dc56801beed2c51f44d105e30487e16644","size":6150968,"filename":"pool/main/m/moby-runc/moby-runc_1.0.0~rc92+azure-2_amd64.deb"},{"package":"powershell","version":"7.2.9-1.deb","architecture":"amd64","section":"shells","priority":"extra","installed_size":189110,"maintainer":"PowerShell Team ","description":"PowerShell is an automation and configuration management platform.","homepage":"https://microsoft.com/powershell","depends":["libc6","libgcc1","libgssapi-krb5-2","libstdc++6","zlib1g","libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52","libssl3|libssl1.1|libssl1.0.2|libssl1.0.0"],"vendor":"Microsoft Corporation","license":"MIT License","sha256":"50f58decb20077f0570e2720ff98689e0b8771b490c81275736b857bc248ecb4","size":70342536,"filename":"pool/main/p/powershell/powershell_7.2.9-1.deb_amd64.deb"},{"package":"azcmagent","version":"0.9.20164.002","architecture":"amd64","maintainer":"Azure Connected Machine Agent ","description":"Azure Connected Machine Agent","depends":["curl"],"package_type":"deb","sha256":"fb1cf14f7833e1ad3b2a68ce54de79262d66606a2205afb9249c4c3f7dfc201f","size":34134372,"filename":"pool/main/a/azcmagent/azcmagent_0.9.20164.002_amd64.deb"},{"package":"moby-compose","version":"2.20.3+azure-ubuntu20.04u1","architecture":"amd64","section":"admin","priority":"optional","installed_size":59115,"maintainer":"Microsoft ","description":"A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI.","homepage":"https://github.com/docker/compose-cli","conflicts":["docker-ce","docker-ce-cli","docker-ee","docker-ee-cli"],"depends":["moby-cli"],"sha256":"acbf7cecdc9df187cc1651c91daf7d43a20e94618d0c426c1102028746bf45e6","size":11886270,"filename":"pool/main/m/moby-compose/moby-compose_2.20.3+azure-ubuntu20.04u1_amd64.deb"},{"package":"dotnet-hostfxr-3.1","version":"3.1.10-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":410,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host FX Resolver - 3.1.10 3.1.10","homepage":"https://dot.net/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 3.1.10)","libc6"],"sha256":"f5682ca5b104f37b4b77fbbcf0662e7fead74014003d9aa40f4edf216e3f0d0f","size":121008,"filename":"pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.10-x64.deb"},{"package":"dotnet-hostfxr-6.0","version":"6.0.7-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":452,"maintainer":".NET Team ","description":"Microsoft .NET Host FX Resolver - 6.0.7","homepage":"https://github.com/dotnet/core","depends":["libgcc1","libstdc++6","dotnet-host (>= 6.0.7)","libc6"],"sha256":"17fc7a07ed846e5f8e6060fbf3bb21686fff1d735915fbc44e6aa16e6b8d526a","size":142192,"filename":"pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.7-x64.deb"},{"package":"dotnet-apphost-pack-3.1","version":"3.1.31-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":214,"maintainer":".NET Core Team ","description":"Microsoft.NETCore.App.Host 3.1.31","homepage":"https://github.com/dotnet/core","sha256":"760bf1bd6cca99b32db239b0bfd2260f7f24179135c7f69107a29dea06c17d64","size":41936,"filename":"pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.31-x64.deb"},{"package":"dotnet-host","version":"3.1.13-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":146,"maintainer":".NET Core Team ","description":"Microsoft .NET Core Host - 3.1.13","homepage":"https://dot.net/core","conflicts":["dotnet","dotnet-nightly"],"depends":["libgcc1","libstdc++6","libc6"],"sha256":"44e5c71e484c1b4627a85f29561d4bcf886dd3e1c0e2a9cdfd8f8740613debcd","size":32782,"filename":"pool/main/d/dotnet-host/dotnet-host-3.1.13-x64.deb"},{"package":"aadlogin-selinux","version":"1.0.016050002","architecture":"amd64","section":"utils","priority":"optional","maintainer":"Yancho Yanev ","description":"Selinux configuration for aadlogin NSS and PAM extensions.","conflicts":["aadsshlogin-selinux"],"depends":["policycoreutils (>=3.0-1)","selinux-utils","selinux-policy-default"],"sha256":"0a305bb2f22e6cd270c46ad0fb9aa9ddfbf831e369e543c3774f278cde7f0a83","size":10148,"filename":"pool/main/a/aadlogin-selinux/aadlogin-selinux_1.0.016050002_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.18-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71045,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.18 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.18)"],"sha256":"50f5968c112685726d23c0c483f3875a5ed3d6fb9062b96e34045aef5050a9ce","size":21924114,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.18-x64.deb"},{"package":"kevlar-repokey-prod","source":"kevlar-repokey","version":"1.1-1","architecture":"amd64","section":"admin","priority":"optional","installed_size":11,"maintainer":"Kevlar for Linux ","description":"Installs ESRP issued public keys to APT keyring","conflicts":["kevlar-repokey-dev","kevlar-repokey-test"],"pre_depends":["apt-transport-https-sas"],"provides":"kevlar-repokey","replaces":["kevlar-repokey-dev","kevlar-repokey-test"],"sha256":"dee391c861313a0dae25cccd08af13e5ab7a60bdad4c00934ef5a60581219502","size":2498,"filename":"pool/main/k/kevlar-repokey/kevlar-repokey-prod_1.1-1_amd64.deb"},{"package":"azureauth","version":"0.8.3-1","architecture":"amd64","section":"misc","priority":"optional","installed_size":74210,"maintainer":"ES365 Security Experience Team ","description":"A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information.","sha256":"0548d922295c5abf08bf13101afd2cd095d8ad153feac54299942b5462301d8a","size":24107162,"filename":"pool/main/a/azureauth/azureauth_0.8.3-1_amd64.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.6.0","architecture":"amd64","section":"java","priority":"optional","installed_size":89388,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"9dbd9bf6019ab06c39837b5e7ff3bf0979f28a6cb8882ad6e85ff6c3c0d04077","size":82460816,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.0_amd64.deb"},{"package":"aspnetcore-runtime-7.0","version":"7.0.7-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":21350,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-runtime-7.0 (>= 7.0.7)"],"sha256":"fa1bf3eb1f17d370c50d31d0af0cb4a7348ac591735f77edc00f160a2a05b916","size":7057462,"filename":"pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.7-x64.deb"},{"package":"intune-portal","version":"1.2303.10","architecture":"amd64","section":"utils","priority":"optional","installed_size":22500,"maintainer":"Microsoft","description":"Microsoft Intune","a_note_about_intune":"every organization has different access requirements, and","depends":["libpango-1.0-0 (>= 1.14.0)","libpam-pwquality (>= 1.4.0-2)","libsecret-1-0 (>= 0.19.1)","libgtk-3-0 (>= 3.9.10)","libsystemd0","libc6 (>= 2.28)","libuuid1 (>= 2.16)","libwebkit2gtk-4.0-37 (>= 2.5.3)","libx11-6","libatk1.0-0 (>= 1.12.4)","libc6 (>= 2.29)","libgtk-3-0 (>= 3.21.4)","libsqlite3-0 (>= 3.7.14)","libglib2.0-0 (>= 2.12.0)","zlib1g (>= 1:1.2.0)","libglib2.0-0 (>= 2.35.8)","msalsdk-dbusclient (>= 1.0)","gnome-keyring (>= 3.36)","libpam0g (>= 0.99.7.1)","libstdc++6 (>= 9)","libssl1.1 (>= 1.1.0)","libcurl4 (>= 7.16.2)","libjavascriptcoregtk-4.0-18","libsoup2.4-1 (>= 2.4.0)"],"recommends":["microsoft-edge-stable (>= 102)"],"sha256":"5c353bba27e2ce61b0f71e5fd38553b0b35740246b29224c59c63b46fb9b66db","size":5359808,"filename":"pool/main/i/intune-portal/intune-portal_1.2303.10_amd64.deb"},{"package":"dotnet-runtime-5.0","version":"5.0.3-1","architecture":"amd64","section":"libs","priority":"standard","installed_size":68326,"maintainer":".NET Team ","description":"Microsoft .NET Runtime - 5.0.3 Microsoft.NETCore.App 5.0.3","homepage":"https://dot.net/core","depends":["dotnet-runtime-deps-5.0 (>= 5.0.3)","dotnet-hostfxr-5.0 (>= 5.0.3)"],"sha256":"7bc20a222deaa183550751261290146c3a20251c913c8f31f4fd4489333fcdb2","size":21819124,"filename":"pool/main/d/dotnet-runtime-5.0/dotnet-runtime-5.0.3-x64.deb"},{"package":"dotnet-sdk-3.1","version":"3.1.423-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":193113,"maintainer":"Microsoft ","description":"Microsoft .NET Core SDK 3.1.423","homepage":"https://dotnet.github.io/core","depends":["libc6 (>= 2.14)","libgcc1 (>= 1:3.0)","libstdc++6 (>= 4.6)","dotnet-targeting-pack-3.1 (>= 3.1.0)","netstandard-targeting-pack-2.1 (>= 2.1.0)","dotnet-apphost-pack-3.1 (>= 3.1.29)","aspnetcore-targeting-pack-3.1 (>= 3.1.10)","dotnet-runtime-3.1 (>= 3.1.29)","aspnetcore-runtime-3.1 (>= 3.1.29)"],"sha256":"d50b5e9b7e40adca7013a516a70905f60a8f4482730d0bb17f5d76e6041d6e2e","size":49818980,"filename":"pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.423-x64.deb"},{"package":"mdatp","version":"101.02.55","architecture":"amd64","section":"devel","priority":"optional","installed_size":50004,"maintainer":"Microsoft Defender ATP Group ","description":"Microsoft Defender Advanced Threat Protection for Endpoints (Production)","depends":["curl (>= 7.5)","libseccomp2","libuuid1","rsyslog","libatomic1","libc6 (>= 2.23)","python3","uuid-runtime","dmidecode","auditd"],"sha256":"82cea8404dbc3d29a69e3d5d0cdcd829fcdeebed9b0258f7e430783e3a89aad2","size":16305972,"filename":"pool/main/m/mdatp/mdatp_101.02.55.amd64.deb"},{"package":"aspnetcore-targeting-pack-5.0","version":"5.0.0-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":12348,"maintainer":"Microsoft ","description":"Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs.","homepage":"https://asp.net","depends":["dotnet-targeting-pack-5.0 (>= 5.0.0)"],"sha256":"c3837d2af9073a6551a81cc25ca60e84a8ac721002f1ccad75a5d376af8e2cc7","size":1316456,"filename":"pool/main/a/aspnetcore-targeting-pack-5.0/aspnetcore-targeting-pack-5.0.0.deb"},{"package":"microsoft-identity-broker","source":"microsoft-identity-broker","version":"1.3.0","architecture":"amd64","section":"java","priority":"optional","installed_size":86451,"maintainer":"Microsoft Identity","description":"microsoft-identity-broker","conflicts":["msft-identity-broker"],"depends":["default-jre","systemd","dbus-session-bus","dbus-system-bus","gnome-keyring"],"recommends":["microsoft-identity-diagnostics"],"provides":"msft-identity-broker","replaces":["msft-identity-broker"],"sha256":"0e73f0fb4860902c6a1ce2a26b986d43aaaac26479b3347c4ed2815ef249a4ad","size":79708440,"filename":"pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.3.0_amd64.deb"},{"package":"aspnetcore-runtime-2.1","version":"2.1.22-1","architecture":"amd64","section":"devel","priority":"standard","installed_size":71081,"maintainer":"Microsoft ","description":"Microsoft ASP.NET Core 2.1.22 Shared Framework","homepage":"https://www.asp.net/","depends":["libc6 (>= 2.14)","dotnet-runtime-2.1 (>= 2.1.22)"],"sha256":"48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493d84c939b7c608","size":21937036,"filename":"pool/main/a/aspnetcore-runtime-2.1/aspnetcore-runtime-2.1.22-x64.deb"},{"package":"azure-functions-core-tools-4","version":"4.0.4590-1","architecture":"amd64","section":"devel","priority":"optional","maintainer":"Ahmed ElSayed ","description":"Azure Function Core Tools v4","homepage":"https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools","conflicts":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"replaces":["azure-functions-core-tools-2","azure-functions-core-tools-3"],"vcs_git":"https://github.com/Azure/azure-functions-core-tools.git","sha256":"a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7257904fa3441e","size":124417844,"filename":"pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4590-1.deb"}] From fa416083f290a379c7c30a1d49d0f05abe304606 Mon Sep 17 00:00:00 2001 From: Hamza Saht <74961214+Luigi31415@users.noreply.github.com> Date: Tue, 19 Nov 2024 21:28:32 +0300 Subject: [PATCH 14/20] Fix/spaces in program name (#608) * fix: enforce word boundaries while checking state presence * fix: add tests for the special netstat case with space in process name --------- Co-authored-by: Kelly Brazil --- jc/parsers/netstat_linux.py | 3 +- .../ubuntu-18.04/netstat-sudo-lnp-space.json | 1 + .../ubuntu-18.04/netstat-sudo-lnp-space.out | 51 +++++++++++++++++++ tests/test_netstat.py | 12 +++++ 4 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json create mode 100644 tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out diff --git a/jc/parsers/netstat_linux.py b/jc/parsers/netstat_linux.py index 222f2944..216a94e1 100644 --- a/jc/parsers/netstat_linux.py +++ b/jc/parsers/netstat_linux.py @@ -1,5 +1,6 @@ r"""jc - JSON Convert Linux netstat Parser""" import string +import re def normalize_headers(header): @@ -38,7 +39,7 @@ def parse_network(headers, entry): ] # split entry based on presence of value in "State" column - contains_state = any(state in entry for state in LIST_OF_STATES) + contains_state = any(re.search(rf"\b{re.escape(state)}\b", entry) for state in LIST_OF_STATES) split_modifier = 1 if contains_state else 2 entry = entry.split(maxsplit=len(headers) - split_modifier) diff --git a/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json new file mode 100644 index 00000000..835325ee --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json @@ -0,0 +1 @@ +[{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"9898","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":9898},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"192.168.68.116","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"bareos-fd","kind":"network","pid":584,"local_port":"9102","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":9102},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"sshd: /usr/sbin","kind":"network","pid":600,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":22},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"5432","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":5432},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"postgres","kind":"network","pid":1676,"local_port":"5433","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":5433},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"127.0.0.1","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"exim4","kind":"network","pid":928,"local_port":"25","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":25},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"zabbix_agen","kind":"network","pid":1817931,"local_port":"10050","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":10050},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"pgpool: watchd","kind":"network","pid":1187,"local_port":"9000","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":9000},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"9898","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":9898},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"sshd: /usr/sbin","kind":"network","pid":600,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":22},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"pgpool","kind":"network","pid":1178,"local_port":"5432","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":5432},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"postgres","kind":"network","pid":1676,"local_port":"5433","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":5433},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"zabbix_agen","kind":"network","pid":1817931,"local_port":"10050","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":10050},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"dhclient","kind":"network","pid":535,"local_port":"68","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":68},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1204,"local_port":"37300","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":37300},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1205,"local_port":"9694","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":9694},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1203,"local_port":"9694","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":9694},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"pgpool: heartb","kind":"network","pid":1206,"local_port":"44649","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":44649},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":null,"program_name":"rsyslogd","kind":"network","pid":494,"local_port":"52868","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":52868},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"127.0.0.1","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"containerd","kind":"network","pid":1112,"local_port":"42351","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":42351},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"127.0.0.53","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"systemd-resolve","kind":"network","pid":885,"local_port":"53","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":53},{"proto":"tcp","recv_q":0,"send_q":0,"local_address":"0.0.0.0","foreign_address":"0.0.0.0","state":"LISTEN","program_name":"sshd","kind":"network","pid":1127,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv4","local_port_num":22},{"proto":"tcp6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"LISTEN","program_name":"sshd","kind":"network","pid":1127,"local_port":"22","foreign_port":"*","transport_protocol":"tcp","network_protocol":"ipv6","local_port_num":22},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"127.0.0.53","foreign_address":"0.0.0.0","state":null,"program_name":"systemd-resolve","kind":"network","pid":885,"local_port":"53","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":53},{"proto":"udp","recv_q":0,"send_q":0,"local_address":"192.168.71.131","foreign_address":"0.0.0.0","state":null,"program_name":"systemd-network","kind":"network","pid":867,"local_port":"68","foreign_port":"*","transport_protocol":"udp","network_protocol":"ipv4","local_port_num":68},{"proto":"raw6","recv_q":0,"send_q":0,"local_address":"::","foreign_address":"::","state":"7","program_name":"systemd-network","kind":"network","pid":867,"local_port":"58","foreign_port":"*","transport_protocol":null,"network_protocol":"ipv6","local_port_num":58},{"proto":"unix","refcnt":2,"flags":"ACC","type":"SEQPACKET","state":"LISTENING","inode":20812,"program_name":"init","path":"/run/udev/control","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33765,"program_name":"systemd","path":"/run/user/1000/systemd/private","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33808,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent.ssh","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33809,"program_name":"systemd","path":"/run/user/1000/gnupg/S.dirmngr","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33810,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent.browser","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33811,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":33812,"program_name":"systemd","path":"/run/user/1000/gnupg/S.gpg-agent.extra","kind":"socket","pid":1723},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20655,"program_name":"init","path":"/run/systemd/private","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20662,"program_name":"init","path":"/run/lvm/lvmetad.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20664,"program_name":"init","path":"/run/systemd/journal/stdout","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":20891,"program_name":"init","path":"/run/lvm/lvmpolld.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27473,"program_name":"init","path":"/run/acpid.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27443,"program_name":"init","path":"/run/snapd.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27445,"program_name":"init","path":"/run/snapd-snap.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27475,"program_name":"init","path":"/run/uuidd/request","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27481,"program_name":"init","path":"/var/run/docker.sock","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27489,"program_name":"init","path":"/var/run/dbus/system_bus_socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27468,"program_name":"init","path":"/var/lib/lxd/unix.socket","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":30726,"program_name":"containerd","path":"/run/containerd/containerd.sock","kind":"socket","pid":1112},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":27436,"program_name":"init","path":"@ISCSIADM_ABSTRACT_NAMESPACE","kind":"socket","pid":1},{"proto":"unix","refcnt":2,"flags":"ACC","type":"STREAM","state":"LISTENING","inode":25548,"program_name":"VGAuthService","path":"/var/run/vmware/guestServicePipe","kind":"socket","pid":607}] diff --git a/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out new file mode 100644 index 00000000..0152b9fa --- /dev/null +++ b/tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out @@ -0,0 +1,51 @@ +Active Internet connections (only servers) +Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name +tcp 0 0 0.0.0.0:9898 0.0.0.0:* LISTEN 1178/pgpool +tcp 0 0 192.168.68.116:9102 0.0.0.0:* LISTEN 584/bareos-fd +tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 600/sshd: /usr/sbin +tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN 1178/pgpool +tcp 0 0 0.0.0.0:5433 0.0.0.0:* LISTEN 1676/postgres +tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 928/exim4 +tcp 0 0 0.0.0.0:10050 0.0.0.0:* LISTEN 1817931/zabbix_agen +tcp 0 0 0.0.0.0:9000 0.0.0.0:* LISTEN 1187/pgpool: watchd +tcp6 0 0 :::9898 :::* LISTEN 1178/pgpool +tcp6 0 0 :::22 :::* LISTEN 600/sshd: /usr/sbin +tcp6 0 0 :::5432 :::* LISTEN 1178/pgpool +tcp6 0 0 :::5433 :::* LISTEN 1676/postgres +tcp6 0 0 :::10050 :::* LISTEN 1817931/zabbix_agen +udp 0 0 0.0.0.0:68 0.0.0.0:* 535/dhclient +udp 0 0 0.0.0.0:37300 0.0.0.0:* 1204/pgpool: heartb +udp 0 0 0.0.0.0:9694 0.0.0.0:* 1205/pgpool: heartb +udp 0 0 0.0.0.0:9694 0.0.0.0:* 1203/pgpool: heartb +udp 0 0 0.0.0.0:44649 0.0.0.0:* 1206/pgpool: heartb +udp 0 0 0.0.0.0:52868 0.0.0.0:* 494/rsyslogd +tcp 0 0 127.0.0.1:42351 0.0.0.0:* LISTEN 1112/containerd +tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 885/systemd-resolve +tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1127/sshd +tcp6 0 0 :::22 :::* LISTEN 1127/sshd +udp 0 0 127.0.0.53:53 0.0.0.0:* 885/systemd-resolve +udp 0 0 192.168.71.131:68 0.0.0.0:* 867/systemd-network +raw6 0 0 :::58 :::* 7 867/systemd-network +Active UNIX domain sockets (only servers) +Proto RefCnt Flags Type State I-Node PID/Program name Path +unix 2 [ ACC ] SEQPACKET LISTENING 20812 1/init /run/udev/control +unix 2 [ ACC ] STREAM LISTENING 33765 1723/systemd /run/user/1000/systemd/private +unix 2 [ ACC ] STREAM LISTENING 33808 1723/systemd /run/user/1000/gnupg/S.gpg-agent.ssh +unix 2 [ ACC ] STREAM LISTENING 33809 1723/systemd /run/user/1000/gnupg/S.dirmngr +unix 2 [ ACC ] STREAM LISTENING 33810 1723/systemd /run/user/1000/gnupg/S.gpg-agent.browser +unix 2 [ ACC ] STREAM LISTENING 33811 1723/systemd /run/user/1000/gnupg/S.gpg-agent +unix 2 [ ACC ] STREAM LISTENING 33812 1723/systemd /run/user/1000/gnupg/S.gpg-agent.extra +unix 2 [ ACC ] STREAM LISTENING 20655 1/init /run/systemd/private +unix 2 [ ACC ] STREAM LISTENING 20662 1/init /run/lvm/lvmetad.socket +unix 2 [ ACC ] STREAM LISTENING 20664 1/init /run/systemd/journal/stdout +unix 2 [ ACC ] STREAM LISTENING 20891 1/init /run/lvm/lvmpolld.socket +unix 2 [ ACC ] STREAM LISTENING 27473 1/init /run/acpid.socket +unix 2 [ ACC ] STREAM LISTENING 27443 1/init /run/snapd.socket +unix 2 [ ACC ] STREAM LISTENING 27445 1/init /run/snapd-snap.socket +unix 2 [ ACC ] STREAM LISTENING 27475 1/init /run/uuidd/request +unix 2 [ ACC ] STREAM LISTENING 27481 1/init /var/run/docker.sock +unix 2 [ ACC ] STREAM LISTENING 27489 1/init /var/run/dbus/system_bus_socket +unix 2 [ ACC ] STREAM LISTENING 27468 1/init /var/lib/lxd/unix.socket +unix 2 [ ACC ] STREAM LISTENING 30726 1112/containerd /run/containerd/containerd.sock +unix 2 [ ACC ] STREAM LISTENING 27436 1/init @ISCSIADM_ABSTRACT_NAMESPACE +unix 2 [ ACC ] STREAM LISTENING 25548 607/VGAuthService /var/run/vmware/guestServicePipe diff --git a/tests/test_netstat.py b/tests/test_netstat.py index 75531825..54392ddb 100644 --- a/tests/test_netstat.py +++ b/tests/test_netstat.py @@ -37,6 +37,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.out'), 'r', encoding='utf-8') as f: ubuntu_18_4_netstat_sudo_lnp = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.out'), 'r', encoding='utf-8') as f: + ubuntu_18_4_netstat_sudo_lnp_space = f.read() + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-aeep.out'), 'r', encoding='utf-8') as f: centos_7_7_netstat_sudo_aeep = f.read() @@ -164,6 +167,9 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp.json'), 'r', encoding='utf-8') as f: ubuntu_18_4_netstat_sudo_lnp_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/netstat-sudo-lnp-space.json'), 'r', encoding='utf-8') as f: + ubuntu_18_4_netstat_sudo_lnp_space_json = json.loads(f.read()) + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/netstat-sudo-aeep.json'), 'r', encoding='utf-8') as f: centos_7_7_netstat_sudo_aeep_json = json.loads(f.read()) @@ -317,6 +323,12 @@ def test_netstat_sudo_lnp_ubuntu_18_4(self): """ self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_sudo_lnp, quiet=True), self.ubuntu_18_4_netstat_sudo_lnp_json) + def test_netstat_sudo_lnp_ubuntu_18_4(self): + """ + Test 'sudo netstat -lnp' on Ubuntu 18.4 with a space in the process name(special case) + """ + self.assertEqual(jc.parsers.netstat.parse(self.ubuntu_18_4_netstat_sudo_lnp_space, quiet=True), self.ubuntu_18_4_netstat_sudo_lnp_space_json) + def test_netstat_sudo_aeep_centos_7_7(self): """ Test 'sudo netstat -aeep' on Centos 7.7 From c0f9b705c6dcfdd3badb45864c5557449946fa23 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 10:33:19 -0800 Subject: [PATCH 15/20] doc update --- CHANGELOG | 7 ++++--- jc/parsers/netstat.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index da5ee3fe..253c3af9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,14 +1,15 @@ jc changelog -20241118 v1.25.4 +20241119 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) -- Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Enhance `ping-s` streaming parser to support error replies - Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs -- Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses +- Fix `mount` parser for cases where there are spaces in the filesystem name +- Fix `netstat` parser for cases where there are spaces in the program name - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 50c82b00..b39ac704 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -355,7 +355,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.15' + version = '1.16' description = '`netstat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' From 0af4a3a5d73b7b594b902404b574c4d47028de50 Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Tue, 19 Nov 2024 21:43:24 +0300 Subject: [PATCH 16/20] fix: New RE_PROBE_IPV6_ONLY with better complexity in worst case (#609) Example ':'*100 Co-authored-by: Kelly Brazil --- jc/parsers/traceroute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/traceroute.py b/jc/parsers/traceroute.py index a55b8574..d1a6b5fc 100644 --- a/jc/parsers/traceroute.py +++ b/jc/parsers/traceroute.py @@ -167,7 +167,7 @@ class info(): RE_HEADER = re.compile(r'(\S+)\s+\((\d+\.\d+\.\d+\.\d+|[0-9a-fA-F:]+)\)') RE_PROBE_NAME_IP = re.compile(r'(\S+)\s+\((\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|[0-9a-fA-F:]+)\)+') RE_PROBE_IP_ONLY = re.compile(r'(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\s+([^\(])') -RE_PROBE_IPV6_ONLY = re.compile(r'(([a-f0-9:]+:+)+[a-f0-9]+)') +RE_PROBE_IPV6_ONLY = re.compile(r'(([a-f0-9]*:)+[a-f0-9]+)') RE_PROBE_BSD_IPV6 = re.compile(r'\b(?:[A-Fa-f0-9]{1,4}:){7}[A-Fa-f0-9]{1,4}\b') RE_HOP = re.compile(r'^\s*(\d+)?\s+(.+)$') RE_PROBE_ASN = re.compile(r'\[AS(\d+)\]') From 4cb88977cc699dbda8e99af0ce930ba2f8742e71 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 10:51:10 -0800 Subject: [PATCH 17/20] add long ipv6 test --- tests/test_traceroute.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/test_traceroute.py b/tests/test_traceroute.py index 7a113f41..71c3341c 100644 --- a/tests/test_traceroute.py +++ b/tests/test_traceroute.py @@ -270,6 +270,19 @@ def test_traceroute_n_ipv6(self): """ self.assertEqual(jc.parsers.traceroute.parse(self.generic_traceroute_n_ipv6, quiet=True), self.generic_traceroute_n_ipv6_json) + def test_traceroute_long_ipv6(self): + """ + Test 'traceroute6' with a long ipv6 response + """ + data = '''traceroute6 to turner-tls.map.fastly.net (2a04:4e42:200::323) from 2600:1700:bab0:d40:985:f00a:98bd:f142, 5 hops max, 12 byte packets + 1 * * * + 2 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 27.635 ms 20.383 ms 23.438 ms + 3 * * * + 4 2001:1890:ff:ff08:12:242:117:16 20.118 ms 20.327 ms 21.213 ms + 5 * * *''' + expected = json.loads('''{"destination_ip":"2a04:4e42:200::323","destination_name":"turner-tls.map.fastly.net","hops":[{"hop":1,"probes":[]},{"hop":2,"probes":[{"annotation":null,"asn":null,"ip":null,"name":null,"rtt":27.635},{"annotation":null,"asn":null,"ip":null,"name":null,"rtt":20.383},{"annotation":null,"asn":null,"ip":null,"name":null,"rtt":23.438}]},{"hop":3,"probes":[]},{"hop":4,"probes":[{"annotation":null,"asn":null,"ip":"2001:1890:ff:ff08:12:242:117:16","name":null,"rtt":20.118},{"annotation":null,"asn":null,"ip":"2001:1890:ff:ff08:12:242:117:16","name":null,"rtt":20.327},{"annotation":null,"asn":null,"ip":"2001:1890:ff:ff08:12:242:117:16","name":null,"rtt":21.213}]},{"hop":5,"probes":[]}]}''') + self.assertEqual(jc.parsers.traceroute.parse(data, quiet=True), expected) + if __name__ == '__main__': unittest.main() From 2278c7ecaba75d80c2d15754bbd3f93e2d03f02f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 10:51:16 -0800 Subject: [PATCH 18/20] doc update --- CHANGELOG | 1 + jc/parsers/traceroute.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 253c3af9..1faa2204 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -11,6 +11,7 @@ jc changelog - Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `netstat` parser for cases where there are spaces in the program name - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name +- Fix `traceroute` parser to support extreme IPv6 cases - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/traceroute.py b/jc/parsers/traceroute.py index d1a6b5fc..36d74d82 100644 --- a/jc/parsers/traceroute.py +++ b/jc/parsers/traceroute.py @@ -123,7 +123,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.7' + version = '1.8' description = '`traceroute` and `traceroute6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' From a8b231da81fae8928688c51002dc6e56cce31e10 Mon Sep 17 00:00:00 2001 From: pettai Date: Tue, 19 Nov 2024 21:12:43 +0100 Subject: [PATCH 19/20] nsd-control parser update, zone transfer status (#607) * add more parsing functionality for transfering state * add additional/conditional fields into the schema --------- Co-authored-by: Kelly Brazil --- jc/parsers/nsd_control.py | 22 +++++++++++++++++-- .../generic/nsd_control-zonestatus.json | 2 +- .../generic/nsd_control-zonestatus.out | 6 +++++ 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/jc/parsers/nsd_control.py b/jc/parsers/nsd_control.py index fd80e950..e2eed304 100644 --- a/jc/parsers/nsd_control.py +++ b/jc/parsers/nsd_control.py @@ -28,9 +28,13 @@ "zone": string "status": { "state": string, + "pattern": string, # Additional + "catalog-member-id": string, # Additional "served-serial": string, "commit-serial": string, - "wait": string + "notified-serial": string, # Conditional + "wait": string, + "transfer": string # Conditional } } ] @@ -89,7 +93,7 @@ def _process(proc_data): List of Dictionaries. Structured to conform to the schema. """ - int_list = {'verbosity', 'ratelimit', 'wait'} + int_list = {'verbosity', 'ratelimit', 'wait', 'transfer'} for entry in proc_data: for key in entry: @@ -229,6 +233,20 @@ def parse(data: str, raw: bool = False, quiet: bool = False): raw_output.append(zonename) continue + if line.startswith('notified-serial:'): + linedata = line.split(': ', maxsplit=1) + notified = linedata[1].strip('"').rstrip('"') + zstatus.update({'notified-serial': notified}) + continue + + if line.startswith('transfer:'): + linedata = line.split(': ', maxsplit=1) + transfer = linedata[1].strip('"').rstrip('"') + zstatus.update({'transfer': transfer}) + zonename.update({'status': zstatus}) + raw_output.append(zonename) + continue + # stats if line.startswith('server') or line.startswith('num.') or line.startswith('size.') or line.startswith('time.') or line.startswith('zone.'): itrparse = True diff --git a/tests/fixtures/generic/nsd_control-zonestatus.json b/tests/fixtures/generic/nsd_control-zonestatus.json index bf3b3243..6d2e0682 100644 --- a/tests/fixtures/generic/nsd_control-zonestatus.json +++ b/tests/fixtures/generic/nsd_control-zonestatus.json @@ -1 +1 @@ -[{"zone":"sunet.se","status":{"state":"ok","served-serial":"2023091302 since 2023-09-14T00:50:11","commit-serial":"2023091302 since 2023-09-14T07:04:05","wait":"27023 sec between attempts"}},{"zone":"catz.sunet.se","status":{"pattern":"example.catalog","catalog-member-id":"4b6f6ce2de5929e4.zones.example.catalog.","state":"ok","served-serial":"1705484863 since 2024-01-17T13:06:02","commit-serial":"1705484863 since 2024-01-17T13:06:02","wait":"21341 sec between attempts"}}] +[{"zone":"sunet.se","status":{"state":"ok","served-serial":"2023091302 since 2023-09-14T00:50:11","commit-serial":"2023091302 since 2023-09-14T07:04:05","wait":"27023 sec between attempts"}},{"zone":"sunet.dev","status":{"state":"refreshing","served-serial":"2023095893 since 2024-10-10T10:10:35","commit-serial":"2023095893 since 2024-10-18T10:00:45","notified-serial":"2023095880 since 2024-10-19T06:11:35","transfer":"TCP connected to 192.168.1.100"}},{"zone":"catz.sunet.se","status":{"pattern":"example.catalog","catalog-member-id":"4b6f6ce2de5929e4.zones.example.catalog.","state":"ok","served-serial":"1705484863 since 2024-01-17T13:06:02","commit-serial":"1705484863 since 2024-01-17T13:06:02","wait":"21341 sec between attempts"}}] diff --git a/tests/fixtures/generic/nsd_control-zonestatus.out b/tests/fixtures/generic/nsd_control-zonestatus.out index 4b57fcde..cda4a484 100644 --- a/tests/fixtures/generic/nsd_control-zonestatus.out +++ b/tests/fixtures/generic/nsd_control-zonestatus.out @@ -3,6 +3,12 @@ zone: sunet.se served-serial: "2023091302 since 2023-09-14T00:50:11" commit-serial: "2023091302 since 2023-09-14T07:04:05" wait: "27023 sec between attempts" +zone: sunet.dev + state: refreshing + served-serial: "2023095893 since 2024-10-10T10:10:35" + commit-serial: "2023095893 since 2024-10-18T10:00:45" + notified-serial: "2023095880 since 2024-10-19T06:11:35" + transfer: "TCP connected to 192.168.1.100" zone: catz.sunet.se pattern: example.catalog catalog-member-id: 4b6f6ce2de5929e4.zones.example.catalog. From 34ab34cc66fbd87ef08fa52d35f2c1532d67189f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 12:15:18 -0800 Subject: [PATCH 20/20] doc update --- CHANGELOG | 1 + jc/parsers/nsd_control.py | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1faa2204..0d91ddc6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,7 @@ jc changelog - Add `ipconfig` command parser (`ipconfig` for Windows) - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Enhance `nsd-control` parser with additional state fields - Enhance `ping-s` streaming parser to support error replies - Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs diff --git a/jc/parsers/nsd_control.py b/jc/parsers/nsd_control.py index e2eed304..595431ae 100644 --- a/jc/parsers/nsd_control.py +++ b/jc/parsers/nsd_control.py @@ -17,24 +17,24 @@ [ { - "version": string, - "verbosity": integer, - "ratelimit": integer + "version": string, + "verbosity": integer, + "ratelimit": integer } ] [ { - "zone": string + "zone": string "status": { - "state": string, - "pattern": string, # Additional - "catalog-member-id": string, # Additional - "served-serial": string, - "commit-serial": string, - "notified-serial": string, # Conditional - "wait": string, - "transfer": string # Conditional + "state": string, + "pattern": string, # Additional + "catalog-member-id": string, # Additional + "served-serial": string, + "commit-serial": string, + "notified-serial": string, # Conditional + "wait": string, + "transfer": string # Conditional } } ] @@ -69,7 +69,7 @@ class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`nsd-control` command parser' author = 'Pettai' author_email = 'pettai@sunet.se'