<?xml version="1.0" encoding="UTF-8"?>
<cvrfdoc xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:cpe="http://cpe.mitre.org/language/2.0" xmlns:cvrf="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/cvrf" xmlns:cvrf-common="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/common" xmlns:cvssv2="http://scap.nist.gov/schema/cvss-v2/1.0" xmlns:cvssv3="https://www.first.org/cvss/cvss-v3.0.xsd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ns0="http://purl.org/dc/elements/1.1/" xmlns:prod="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/prod" xmlns:scap-core="http://scap.nist.gov/schema/scap-core/1.0" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:vuln="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/vuln" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/cvrf">
  <DocumentTitle xml:lang="en">CVE-2025-38554</DocumentTitle>
  <DocumentType>SUSE CVE</DocumentType>
  <DocumentPublisher Type="Vendor">
    <ContactDetails>security@suse.de</ContactDetails>
    <IssuingAuthority>SUSE Security Team</IssuingAuthority>
  </DocumentPublisher>
  <DocumentTracking>
    <Identification>
      <ID>SUSE CVE-2025-38554</ID>
    </Identification>
    <Status>Interim</Status>
    <Version>1</Version>
    <RevisionHistory>
      <Revision>
        <Number>3</Number>
        <Date>2026-03-05T00:52:53Z</Date>
        <Description>current</Description>
      </Revision>
    </RevisionHistory>
    <InitialReleaseDate>2025-09-22T07:46:54Z</InitialReleaseDate>
    <CurrentReleaseDate>2026-03-05T00:52:53Z</CurrentReleaseDate>
    <Generator>
      <Engine>cve-database/bin/generate-cvrf-cve.pl</Engine>
      <Date>2020-12-27T01:00:00Z</Date>
    </Generator>
  </DocumentTracking>
  <DocumentNotes>
    <Note Title="CVE" Type="Summary" Ordinal="1" xml:lang="en">CVE-2025-38554</Note>
    <Note Title="Mitre CVE Description" Type="Description" Ordinal="2" xml:lang="en">In the Linux kernel, the following vulnerability has been resolved:

mm: fix a UAF when vma-&gt;mm is freed after vma-&gt;vm_refcnt got dropped

By inducing delays in the right places, Jann Horn created a reproducer for
a hard to hit UAF issue that became possible after VMAs were allowed to be
recycled by adding SLAB_TYPESAFE_BY_RCU to their cache.

Race description is borrowed from Jann's discovery report:
lock_vma_under_rcu() looks up a VMA locklessly with mas_walk() under
rcu_read_lock().  At that point, the VMA may be concurrently freed, and it
can be recycled by another process.  vma_start_read() then increments the
vma-&gt;vm_refcnt (if it is in an acceptable range), and if this succeeds,
vma_start_read() can return a recycled VMA.

In this scenario where the VMA has been recycled, lock_vma_under_rcu()
will then detect the mismatching -&gt;vm_mm pointer and drop the VMA through
vma_end_read(), which calls vma_refcount_put().  vma_refcount_put() drops
the refcount and then calls rcuwait_wake_up() using a copy of vma-&gt;vm_mm. 
This is wrong: It implicitly assumes that the caller is keeping the VMA's
mm alive, but in this scenario the caller has no relation to the VMA's mm,
so the rcuwait_wake_up() can cause UAF.

The diagram depicting the race:
T1         T2         T3
==         ==         ==
lock_vma_under_rcu
  mas_walk
          &lt;VMA gets removed from mm&gt;
                      mmap
                        &lt;the same VMA is reallocated&gt;
  vma_start_read
    __refcount_inc_not_zero_limited_acquire
                      munmap
                        __vma_enter_locked
                          refcount_add_not_zero
  vma_end_read
    vma_refcount_put
      __refcount_dec_and_test
                          rcuwait_wait_event
                            &lt;finish operation&gt;
      rcuwait_wake_up [UAF]

Note that rcuwait_wait_event() in T3 does not block because refcount was
already dropped by T1.  At this point T3 can exit and free the mm causing
UAF in T1.

To avoid this we move vma-&gt;vm_mm verification into vma_start_read() and
grab vma-&gt;vm_mm to stabilize it before vma_refcount_put() operation.

[surenb@google.com: v3]</Note>
    <Note Title="Terms of Use" Type="Legal Disclaimer" Ordinal="4" xml:lang="en">The CVRF data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).</Note>
  </DocumentNotes>
  <DocumentReferences>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2025-November/023276.html</URL>
      <Description>E-Mail link for SUSE-SU-2025:20994-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2025-November/023275.html</URL>
      <Description>E-Mail link for SUSE-SU-2025:20996-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2025-November/023431.html</URL>
      <Description>E-Mail link for SUSE-SU-2025:21074-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2025-December/023515.html</URL>
      <Description>E-Mail link for SUSE-SU-2025:21139-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2025-December/023499.html</URL>
      <Description>E-Mail link for SUSE-SU-2025:21179-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2026-January/023950.html</URL>
      <Description>E-Mail link for SUSE-SU-2026:20149-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2026-January/023942.html</URL>
      <Description>E-Mail link for SUSE-SU-2026:20164-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://lists.suse.com/pipermail/sle-security-updates/2026-January/023938.html</URL>
      <Description>E-Mail link for SUSE-SU-2026:20169-1</Description>
    </Reference>
    <Reference Type="Self">
      <URL>https://www.suse.com/support/security/rating/</URL>
      <Description>SUSE Security Ratings</Description>
    </Reference>
  </DocumentReferences>
  <ProductTree xmlns="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/prod">
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
        <FullProductName ProductID="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39">
        <FullProductName ProductID="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39">Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41">
        <FullProductName ProductID="Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41">Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39">
        <FullProductName ProductID="Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39">Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.0/toolbox:13.2-9.1">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.0/toolbox:13.2-9.1">
        <FullProductName ProductID="Container suse/sl-micro/6.0/toolbox:13.2-9.1">Container suse/sl-micro/6.0/toolbox:13.2-9.1</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2">
        <FullProductName ProductID="Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2">Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27">
        <FullProductName ProductID="Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27">Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29">
        <FullProductName ProductID="Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29">Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14">
      <Branch Type="Product Name" Name="Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14">
        <FullProductName ProductID="Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14">Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro">
      <Branch Type="Product Name" Name="Image SL-Micro">
        <FullProductName ProductID="Image SL-Micro">Image SL-Micro</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Azure">
      <Branch Type="Product Name" Name="Image SL-Micro-Azure">
        <FullProductName ProductID="Image SL-Micro-Azure">Image SL-Micro-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SL-Micro-BYOS-Azure">
        <FullProductName ProductID="Image SL-Micro-BYOS-Azure">Image SL-Micro-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SL-Micro-BYOS-EC2">
        <FullProductName ProductID="Image SL-Micro-BYOS-EC2">Image SL-Micro-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SL-Micro-BYOS-GCE">
        <FullProductName ProductID="Image SL-Micro-BYOS-GCE">Image SL-Micro-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Base">
      <Branch Type="Product Name" Name="Image SL-Micro-Base">
        <FullProductName ProductID="Image SL-Micro-Base">Image SL-Micro-Base</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Base-RT">
      <Branch Type="Product Name" Name="Image SL-Micro-Base-RT">
        <FullProductName ProductID="Image SL-Micro-Base-RT">Image SL-Micro-Base-RT</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Base-RT-SelfInstall">
      <Branch Type="Product Name" Name="Image SL-Micro-Base-RT-SelfInstall">
        <FullProductName ProductID="Image SL-Micro-Base-RT-SelfInstall">Image SL-Micro-Base-RT-SelfInstall</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Base-RT-encrypted">
      <Branch Type="Product Name" Name="Image SL-Micro-Base-RT-encrypted">
        <FullProductName ProductID="Image SL-Micro-Base-RT-encrypted">Image SL-Micro-Base-RT-encrypted</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Base-SelfInstall">
      <Branch Type="Product Name" Name="Image SL-Micro-Base-SelfInstall">
        <FullProductName ProductID="Image SL-Micro-Base-SelfInstall">Image SL-Micro-Base-SelfInstall</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Base-encrypted">
      <Branch Type="Product Name" Name="Image SL-Micro-Base-encrypted">
        <FullProductName ProductID="Image SL-Micro-Base-encrypted">Image SL-Micro-Base-encrypted</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Base-qcow">
      <Branch Type="Product Name" Name="Image SL-Micro-Base-qcow">
        <FullProductName ProductID="Image SL-Micro-Base-qcow">Image SL-Micro-Base-qcow</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Default">
      <Branch Type="Product Name" Name="Image SL-Micro-Default">
        <FullProductName ProductID="Image SL-Micro-Default">Image SL-Micro-Default</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Default-SelfInstall">
      <Branch Type="Product Name" Name="Image SL-Micro-Default-SelfInstall">
        <FullProductName ProductID="Image SL-Micro-Default-SelfInstall">Image SL-Micro-Default-SelfInstall</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Default-encrypted">
      <Branch Type="Product Name" Name="Image SL-Micro-Default-encrypted">
        <FullProductName ProductID="Image SL-Micro-Default-encrypted">Image SL-Micro-Default-encrypted</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-Default-qcow">
      <Branch Type="Product Name" Name="Image SL-Micro-Default-qcow">
        <FullProductName ProductID="Image SL-Micro-Default-qcow">Image SL-Micro-Default-qcow</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SL-Micro-EC2">
      <Branch Type="Product Name" Name="Image SL-Micro-EC2">
        <FullProductName ProductID="Image SL-Micro-EC2">Image SL-Micro-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro">
      <Branch Type="Product Name" Name="Image SLE-Micro">
        <FullProductName ProductID="Image SLE-Micro">Image SLE-Micro</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro-Azure">
      <Branch Type="Product Name" Name="Image SLE-Micro-Azure">
        <FullProductName ProductID="Image SLE-Micro-Azure">Image SLE-Micro-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro-BYOS">
      <Branch Type="Product Name" Name="Image SLE-Micro-BYOS">
        <FullProductName ProductID="Image SLE-Micro-BYOS">Image SLE-Micro-BYOS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SLE-Micro-BYOS-Azure">
        <FullProductName ProductID="Image SLE-Micro-BYOS-Azure">Image SLE-Micro-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SLE-Micro-BYOS-EC2">
        <FullProductName ProductID="Image SLE-Micro-BYOS-EC2">Image SLE-Micro-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SLE-Micro-BYOS-GCE">
        <FullProductName ProductID="Image SLE-Micro-BYOS-GCE">Image SLE-Micro-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro-EC2">
      <Branch Type="Product Name" Name="Image SLE-Micro-EC2">
        <FullProductName ProductID="Image SLE-Micro-EC2">Image SLE-Micro-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLE-Micro-GCE">
      <Branch Type="Product Name" Name="Image SLE-Micro-GCE">
        <FullProductName ProductID="Image SLE-Micro-GCE">Image SLE-Micro-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-Azure-3P">
      <Branch Type="Product Name" Name="Image SLES-Azure-3P">
        <FullProductName ProductID="Image SLES-Azure-3P">Image SLES-Azure-3P</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-Azure-Basic">
      <Branch Type="Product Name" Name="Image SLES-Azure-Basic">
        <FullProductName ProductID="Image SLES-Azure-Basic">Image SLES-Azure-Basic</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-Azure-Standard">
      <Branch Type="Product Name" Name="Image SLES-Azure-Standard">
        <FullProductName ProductID="Image SLES-Azure-Standard">Image SLES-Azure-Standard</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SLES-BYOS-Azure">
        <FullProductName ProductID="Image SLES-BYOS-Azure">Image SLES-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SLES-BYOS-EC2">
        <FullProductName ProductID="Image SLES-BYOS-EC2">Image SLES-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SLES-BYOS-GCE">
        <FullProductName ProductID="Image SLES-BYOS-GCE">Image SLES-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-CHOST-BYOS-Aliyun">
      <Branch Type="Product Name" Name="Image SLES-CHOST-BYOS-Aliyun">
        <FullProductName ProductID="Image SLES-CHOST-BYOS-Aliyun">Image SLES-CHOST-BYOS-Aliyun</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-CHOST-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SLES-CHOST-BYOS-Azure">
        <FullProductName ProductID="Image SLES-CHOST-BYOS-Azure">Image SLES-CHOST-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-CHOST-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SLES-CHOST-BYOS-EC2">
        <FullProductName ProductID="Image SLES-CHOST-BYOS-EC2">Image SLES-CHOST-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-CHOST-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SLES-CHOST-BYOS-GCE">
        <FullProductName ProductID="Image SLES-CHOST-BYOS-GCE">Image SLES-CHOST-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-CHOST-BYOS-GDC">
      <Branch Type="Product Name" Name="Image SLES-CHOST-BYOS-GDC">
        <FullProductName ProductID="Image SLES-CHOST-BYOS-GDC">Image SLES-CHOST-BYOS-GDC</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-CHOST-BYOS-SAP-CCloud">
      <Branch Type="Product Name" Name="Image SLES-CHOST-BYOS-SAP-CCloud">
        <FullProductName ProductID="Image SLES-CHOST-BYOS-SAP-CCloud">Image SLES-CHOST-BYOS-SAP-CCloud</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-EC2">
      <Branch Type="Product Name" Name="Image SLES-EC2">
        <FullProductName ProductID="Image SLES-EC2">Image SLES-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-GCE">
      <Branch Type="Product Name" Name="Image SLES-GCE">
        <FullProductName ProductID="Image SLES-GCE">Image SLES-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-Hardened-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SLES-Hardened-BYOS-Azure">
        <FullProductName ProductID="Image SLES-Hardened-BYOS-Azure">Image SLES-Hardened-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-Hardened-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SLES-Hardened-BYOS-EC2">
        <FullProductName ProductID="Image SLES-Hardened-BYOS-EC2">Image SLES-Hardened-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-Hardened-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SLES-Hardened-BYOS-GCE">
        <FullProductName ProductID="Image SLES-Hardened-BYOS-GCE">Image SLES-Hardened-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAP-Azure">
      <Branch Type="Product Name" Name="Image SLES-SAP-Azure">
        <FullProductName ProductID="Image SLES-SAP-Azure">Image SLES-SAP-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAP-Azure-3P">
      <Branch Type="Product Name" Name="Image SLES-SAP-Azure-3P">
        <FullProductName ProductID="Image SLES-SAP-Azure-3P">Image SLES-SAP-Azure-3P</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAP-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SLES-SAP-BYOS-Azure">
        <FullProductName ProductID="Image SLES-SAP-BYOS-Azure">Image SLES-SAP-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAP-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SLES-SAP-BYOS-EC2">
        <FullProductName ProductID="Image SLES-SAP-BYOS-EC2">Image SLES-SAP-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAP-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SLES-SAP-BYOS-GCE">
        <FullProductName ProductID="Image SLES-SAP-BYOS-GCE">Image SLES-SAP-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAP-GCE">
      <Branch Type="Product Name" Name="Image SLES-SAP-GCE">
        <FullProductName ProductID="Image SLES-SAP-GCE">Image SLES-SAP-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAPCAL-Azure">
      <Branch Type="Product Name" Name="Image SLES-SAPCAL-Azure">
        <FullProductName ProductID="Image SLES-SAPCAL-Azure">Image SLES-SAPCAL-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAPCAL-EC2">
      <Branch Type="Product Name" Name="Image SLES-SAPCAL-EC2">
        <FullProductName ProductID="Image SLES-SAPCAL-EC2">Image SLES-SAPCAL-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SLES-SAPCAL-GCE">
      <Branch Type="Product Name" Name="Image SLES-SAPCAL-GCE">
        <FullProductName ProductID="Image SLES-SAPCAL-GCE">Image SLES-SAPCAL-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure">Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2">Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE">Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Server-Azure-llc">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Server-Azure-llc">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-Azure-llc">Image SUSE-Multi-Linux-Manager-Server-Azure-llc</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Server-Azure-ltd">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Server-Azure-ltd">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-Azure-ltd">Image SUSE-Multi-Linux-Manager-Server-Azure-ltd</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure">Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2">Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE">Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Server-EC2-llc">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Server-EC2-llc">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-EC2-llc">Image SUSE-Multi-Linux-Manager-Server-EC2-llc</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="Image SUSE-Multi-Linux-Manager-Server-EC2-ltd">
      <Branch Type="Product Name" Name="Image SUSE-Multi-Linux-Manager-Server-EC2-ltd">
        <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-EC2-ltd">Image SUSE-Multi-Linux-Manager-Server-EC2-ltd</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SLES-LTSS-TERADATA 15 SP2">
      <Branch Type="Product Name" Name="SLES-LTSS-TERADATA 15 SP2">
        <FullProductName ProductID="SLES-LTSS-TERADATA 15 SP2" CPE="cpe:/o:suse:sles-ltss-teradata:15:sp2">SLES-LTSS-TERADATA 15 SP2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Desktop 15 SP6">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6" CPE="cpe:/o:suse:sle-module-basesystem:15:sp6">SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP6" CPE="cpe:/o:suse:sle-module-development-tools:15:sp6">SUSE Linux Enterprise Module for Development Tools 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Workstation Extension 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP6" CPE="cpe:/o:suse:sle-we:15:sp6">SUSE Linux Enterprise Workstation Extension 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Desktop 15 SP7">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7" CPE="cpe:/o:suse:sle-module-basesystem:15:sp7">SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP7" CPE="cpe:/o:suse:sle-module-development-tools:15:sp7">SUSE Linux Enterprise Module for Development Tools 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Workstation Extension 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP7" CPE="cpe:/o:suse:sle-we:15:sp7">SUSE Linux Enterprise Workstation Extension 15 SP7</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Availability Extension 15 SP3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Availability Extension 15 SP3">
        <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP3" CPE="cpe:/o:suse:sle-ha:15:sp3">SUSE Linux Enterprise High Availability Extension 15 SP3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Availability Extension 15 SP6">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Availability Extension 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP6" CPE="cpe:/o:suse:sle-ha:15:sp6">SUSE Linux Enterprise High Availability Extension 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Availability Extension 15 SP7">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Availability Extension 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP7" CPE="cpe:/o:suse:sle-ha:15:sp7">SUSE Linux Enterprise High Availability Extension 15 SP7</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Availability Extension 16.0">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Availability Extension 16.0">
        <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 16.0" CPE="cpe:/o:suse:sle-ha:16.0">SUSE Linux Enterprise High Availability Extension 16.0</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS" CPE="cpe:/o:suse:sle_hpc-ltss:15:sp3">SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS" CPE="cpe:/o:suse:sle_hpc-ltss:15:sp4">SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS" CPE="cpe:/o:suse:sle_hpc-espos:15:sp5">SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS" CPE="cpe:/o:suse:sle_hpc-ltss:15:sp5">SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP6">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6" CPE="cpe:/o:suse:sle-module-basesystem:15:sp6">SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP6" CPE="cpe:/o:suse:sle-module-development-tools:15:sp6">SUSE Linux Enterprise Module for Development Tools 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Legacy 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP6" CPE="cpe:/o:suse:sle-module-legacy:15:sp6">SUSE Linux Enterprise Module for Legacy 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Public Cloud 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP6" CPE="cpe:/o:suse:sle-module-public-cloud:15:sp6">SUSE Linux Enterprise Module for Public Cloud 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise High Performance Computing 15 SP7">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7" CPE="cpe:/o:suse:sle-module-basesystem:15:sp7">SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP7" CPE="cpe:/o:suse:sle-module-development-tools:15:sp7">SUSE Linux Enterprise Module for Development Tools 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Legacy 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP7" CPE="cpe:/o:suse:sle-module-legacy:15:sp7">SUSE Linux Enterprise Module for Legacy 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Public Cloud 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP7" CPE="cpe:/o:suse:sle-module-public-cloud:15:sp7">SUSE Linux Enterprise Module for Public Cloud 15 SP7</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Live Patching 12 SP5">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Live Patching 12 SP5">
        <FullProductName ProductID="SUSE Linux Enterprise Live Patching 12 SP5" CPE="cpe:/o:suse:sle-live-patching:12:sp5">SUSE Linux Enterprise Live Patching 12 SP5</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Live Patching 15 SP3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Live Patching 15 SP3">
        <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP3" CPE="cpe:/o:suse:sle-module-live-patching:15:sp3">SUSE Linux Enterprise Live Patching 15 SP3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Live Patching 15 SP4">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Live Patching 15 SP4">
        <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP4" CPE="cpe:/o:suse:sle-module-live-patching:15:sp4">SUSE Linux Enterprise Live Patching 15 SP4</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Live Patching 15 SP5">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Live Patching 15 SP5">
        <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP5" CPE="cpe:/o:suse:sle-module-live-patching:15:sp5">SUSE Linux Enterprise Live Patching 15 SP5</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Live Patching 15 SP6">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Live Patching 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP6" CPE="cpe:/o:suse:sle-module-live-patching:15:sp6">SUSE Linux Enterprise Live Patching 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Live Patching 15 SP7">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Live Patching 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP7" CPE="cpe:/o:suse:sle-module-live-patching:15:sp7">SUSE Linux Enterprise Live Patching 15 SP7</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Micro 5.0">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Micro 5.0">
        <FullProductName ProductID="SUSE Linux Enterprise Micro 5.0" CPE="cpe:/o:suse:suse-microos:5.0">SUSE Linux Enterprise Micro 5.0</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Micro 5.1">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Micro 5.1">
        <FullProductName ProductID="SUSE Linux Enterprise Micro 5.1" CPE="cpe:/o:suse:suse-microos:5.1">SUSE Linux Enterprise Micro 5.1</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Micro 5.2">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Micro 5.2">
        <FullProductName ProductID="SUSE Linux Enterprise Micro 5.2" CPE="cpe:/o:suse:suse-microos:5.2">SUSE Linux Enterprise Micro 5.2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Micro 5.3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Micro 5.3">
        <FullProductName ProductID="SUSE Linux Enterprise Micro 5.3" CPE="cpe:/o:suse:sle-micro:5.3">SUSE Linux Enterprise Micro 5.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Micro 5.4">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Micro 5.4">
        <FullProductName ProductID="SUSE Linux Enterprise Micro 5.4" CPE="cpe:/o:suse:sle-micro:5.4">SUSE Linux Enterprise Micro 5.4</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Micro 5.5">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Micro 5.5">
        <FullProductName ProductID="SUSE Linux Enterprise Micro 5.5" CPE="cpe:/o:suse:sle-micro:5.5">SUSE Linux Enterprise Micro 5.5</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Real Time 15 SP6">
      <Branch Type="Product Name" Name="SUSE Real Time Module 15 SP6">
        <FullProductName ProductID="SUSE Real Time Module 15 SP6" CPE="cpe:/o:suse:sle-module-rt:15:sp6">SUSE Real Time Module 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Real Time 15 SP7">
      <Branch Type="Product Name" Name="SUSE Real Time Module 15 SP7">
        <FullProductName ProductID="SUSE Real Time Module 15 SP7" CPE="cpe:/o:suse:sle-module-rt:15:sp7">SUSE Real Time Module 15 SP7</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 11 SP4 LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 11 SP4 LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS" CPE="cpe:/o:suse:suse_sles_ltss:11:sp4">SUSE Linux Enterprise Server 11 SP4 LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE">
        <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE" CPE="cpe:/o:suse:suse_sles_ltss-extreme-core:11:sp4">SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 12 SP2-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS" CPE="cpe:/o:suse:sles-ltss:12:sp2">SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 12 SP4-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS" CPE="cpe:/o:suse:sles-ltss:12:sp4">SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 12 SP5-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS" CPE="cpe:/o:suse:sles-ltss:12:sp5">SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security">
        <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security" CPE="cpe:/o:suse:sles-ltss-extended-security:12:sp5">SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP1-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp1">SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP2-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP2-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP2-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp2">SUSE Linux Enterprise Server 15 SP2-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP3-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp3">SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP4-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp4">SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP5-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp5">SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP6">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6" CPE="cpe:/o:suse:sle-module-basesystem:15:sp6">SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP6" CPE="cpe:/o:suse:sle-module-development-tools:15:sp6">SUSE Linux Enterprise Module for Development Tools 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Legacy 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP6" CPE="cpe:/o:suse:sle-module-legacy:15:sp6">SUSE Linux Enterprise Module for Legacy 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Public Cloud 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP6" CPE="cpe:/o:suse:sle-module-public-cloud:15:sp6">SUSE Linux Enterprise Module for Public Cloud 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Workstation Extension 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP6" CPE="cpe:/o:suse:sle-we:15:sp6">SUSE Linux Enterprise Workstation Extension 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15 SP6-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS" CPE="cpe:/o:suse:sles-ltss:15:sp6">SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15 SP7">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7" CPE="cpe:/o:suse:sle-module-basesystem:15:sp7">SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP7" CPE="cpe:/o:suse:sle-module-development-tools:15:sp7">SUSE Linux Enterprise Module for Development Tools 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Legacy 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP7" CPE="cpe:/o:suse:sle-module-legacy:15:sp7">SUSE Linux Enterprise Module for Legacy 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Public Cloud 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP7" CPE="cpe:/o:suse:sle-module-public-cloud:15:sp7">SUSE Linux Enterprise Module for Public Cloud 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Workstation Extension 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP7" CPE="cpe:/o:suse:sle-we:15:sp7">SUSE Linux Enterprise Workstation Extension 15 SP7</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 15-LTSS">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 15-LTSS">
        <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS" CPE="cpe:/o:suse:sles-ltss:15">SUSE Linux Enterprise Server 15-LTSS</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server 16.0">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server 16.0">
        <FullProductName ProductID="SUSE Linux Enterprise Server 16.0" CPE="cpe:/o:suse:sles:16:16.0:server">SUSE Linux Enterprise Server 16.0</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server Teradata 12 SP3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server Teradata 12 SP3">
        <FullProductName ProductID="SUSE Linux Enterprise Server Teradata 12 SP3" CPE="cpe:/o:suse:sles_teradata:12:sp3">SUSE Linux Enterprise Server Teradata 12 SP3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server Teradata 15 SP4">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server Teradata 15 SP4">
        <FullProductName ProductID="SUSE Linux Enterprise Server Teradata 15 SP4" CPE="cpe:/o:suse:sles_teradata:15:sp4">SUSE Linux Enterprise Server Teradata 15 SP4</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3" CPE="cpe:/o:suse:sles_sap:15:sp3">SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4" CPE="cpe:/o:suse:sles_sap:15:sp4">SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5" CPE="cpe:/o:suse:sles_sap:15:sp5">SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6" CPE="cpe:/o:suse:sle-module-basesystem:15:sp6">SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP6" CPE="cpe:/o:suse:sle-module-development-tools:15:sp6">SUSE Linux Enterprise Module for Development Tools 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Legacy 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP6" CPE="cpe:/o:suse:sle-module-legacy:15:sp6">SUSE Linux Enterprise Module for Legacy 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Public Cloud 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP6" CPE="cpe:/o:suse:sle-module-public-cloud:15:sp6">SUSE Linux Enterprise Module for Public Cloud 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6" CPE="cpe:/o:suse:sles_sap:15:sp6">SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Workstation Extension 15 SP6">
        <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP6" CPE="cpe:/o:suse:sle-we:15:sp6">SUSE Linux Enterprise Workstation Extension 15 SP6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP Applications 15 SP7">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Basesystem 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7" CPE="cpe:/o:suse:sle-module-basesystem:15:sp7">SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Development Tools 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP7" CPE="cpe:/o:suse:sle-module-development-tools:15:sp7">SUSE Linux Enterprise Module for Development Tools 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Legacy 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP7" CPE="cpe:/o:suse:sle-module-legacy:15:sp7">SUSE Linux Enterprise Module for Legacy 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Module for Public Cloud 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP7" CPE="cpe:/o:suse:sle-module-public-cloud:15:sp7">SUSE Linux Enterprise Module for Public Cloud 15 SP7</FullProductName>
      </Branch>
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Workstation Extension 15 SP7">
        <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP7" CPE="cpe:/o:suse:sle-we:15:sp7">SUSE Linux Enterprise Workstation Extension 15 SP7</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Enterprise Server for SAP applications 16.0">
      <Branch Type="Product Name" Name="SUSE Linux Enterprise Server for SAP applications 16.0">
        <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0" CPE="cpe:/o:suse:sles:16:16.0:server-sap">SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Micro 6.0">
      <Branch Type="Product Name" Name="SUSE Linux Micro 6.0">
        <FullProductName ProductID="SUSE Linux Micro 6.0" CPE="cpe:/o:suse:sl-micro:6.0">SUSE Linux Micro 6.0</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Micro 6.1">
      <Branch Type="Product Name" Name="SUSE Linux Micro 6.1">
        <FullProductName ProductID="SUSE Linux Micro 6.1" CPE="cpe:/o:suse:sl-micro:6.1">SUSE Linux Micro 6.1</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Linux Micro 6.2">
      <Branch Type="Product Name" Name="SUSE Linux Micro 6.2">
        <FullProductName ProductID="SUSE Linux Micro 6.2" CPE="cpe:/o:suse:sles:16:16.0:transactional">SUSE Linux Micro 6.2</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Manager Proxy 4.3">
      <Branch Type="Product Name" Name="SUSE Manager Proxy 4.3">
        <FullProductName ProductID="SUSE Manager Proxy 4.3" CPE="cpe:/o:suse:suse-manager-proxy:4.3">SUSE Manager Proxy 4.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Manager Proxy LTS 4.3">
      <Branch Type="Product Name" Name="SUSE Manager Proxy LTS 4.3">
        <FullProductName ProductID="SUSE Manager Proxy LTS 4.3" CPE="cpe:/o:suse:suse-manager-proxy-lts:4.3">SUSE Manager Proxy LTS 4.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Manager Retail Branch Server 4.3">
      <Branch Type="Product Name" Name="SUSE Manager Retail Branch Server 4.3">
        <FullProductName ProductID="SUSE Manager Retail Branch Server 4.3" CPE="cpe:/o:suse:suse-manager-retail-branch-server:4.3">SUSE Manager Retail Branch Server 4.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Manager Retail Branch Server LTS 4.3">
      <Branch Type="Product Name" Name="SUSE Manager Retail Branch Server LTS 4.3">
        <FullProductName ProductID="SUSE Manager Retail Branch Server LTS 4.3" CPE="cpe:/o:suse:suse-manager-retail-branch-server-lts:4.3">SUSE Manager Retail Branch Server LTS 4.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Manager Server 4.3">
      <Branch Type="Product Name" Name="SUSE Manager Server 4.3">
        <FullProductName ProductID="SUSE Manager Server 4.3" CPE="cpe:/o:suse:suse-manager-server:4.3">SUSE Manager Server 4.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="SUSE Manager Server LTS 4.3">
      <Branch Type="Product Name" Name="SUSE Manager Server LTS 4.3">
        <FullProductName ProductID="SUSE Manager Server LTS 4.3" CPE="cpe:/o:suse:suse-manager-server-lts:4.3">SUSE Manager Server LTS 4.3</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="openSUSE Leap 15.6">
      <Branch Type="Product Name" Name="openSUSE Leap 15.6">
        <FullProductName ProductID="openSUSE Leap 15.6" CPE="cpe:/o:opensuse:leap:15.6">openSUSE Leap 15.6</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Family" Name="openSUSE Leap 16.0">
      <Branch Type="Product Name" Name="openSUSE Leap 16.0">
        <FullProductName ProductID="openSUSE Leap 16.0">openSUSE Leap 16.0</FullProductName>
      </Branch>
    </Branch>
    <Branch Type="Product Version" Name="cluster-md-kmp-64kb-6.12.0-160000.6.1">
      <FullProductName ProductID="cluster-md-kmp-64kb-6.12.0-160000.6.1">cluster-md-kmp-64kb-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="cluster-md-kmp-default">
      <FullProductName ProductID="cluster-md-kmp-default">cluster-md-kmp-default</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="cluster-md-kmp-default-6.12.0-160000.6.1">
      <FullProductName ProductID="cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="cluster-md-kmp-rt-6.12.0-160000.6.1">
      <FullProductName ProductID="cluster-md-kmp-rt-6.12.0-160000.6.1">cluster-md-kmp-rt-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dlm-kmp-64kb-6.12.0-160000.6.1">
      <FullProductName ProductID="dlm-kmp-64kb-6.12.0-160000.6.1">dlm-kmp-64kb-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dlm-kmp-default">
      <FullProductName ProductID="dlm-kmp-default">dlm-kmp-default</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dlm-kmp-default-6.12.0-160000.6.1">
      <FullProductName ProductID="dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dlm-kmp-rt-6.12.0-160000.6.1">
      <FullProductName ProductID="dlm-kmp-rt-6.12.0-160000.6.1">dlm-kmp-rt-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-allwinner-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-allwinner-6.12.0-160000.6.1">dtb-allwinner-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-altera-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-altera-6.12.0-160000.6.1">dtb-altera-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-amazon-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-amazon-6.12.0-160000.6.1">dtb-amazon-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-amd-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-amd-6.12.0-160000.6.1">dtb-amd-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-amlogic-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-amlogic-6.12.0-160000.6.1">dtb-amlogic-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-apm-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-apm-6.12.0-160000.6.1">dtb-apm-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-apple-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-apple-6.12.0-160000.6.1">dtb-apple-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-arm-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-arm-6.12.0-160000.6.1">dtb-arm-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-broadcom-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-broadcom-6.12.0-160000.6.1">dtb-broadcom-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-cavium-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-cavium-6.12.0-160000.6.1">dtb-cavium-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-exynos-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-exynos-6.12.0-160000.6.1">dtb-exynos-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-freescale-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-freescale-6.12.0-160000.6.1">dtb-freescale-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-hisilicon-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-hisilicon-6.12.0-160000.6.1">dtb-hisilicon-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-lg-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-lg-6.12.0-160000.6.1">dtb-lg-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-marvell-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-marvell-6.12.0-160000.6.1">dtb-marvell-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-mediatek-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-mediatek-6.12.0-160000.6.1">dtb-mediatek-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-nvidia-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-nvidia-6.12.0-160000.6.1">dtb-nvidia-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-qcom-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-qcom-6.12.0-160000.6.1">dtb-qcom-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-renesas-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-renesas-6.12.0-160000.6.1">dtb-renesas-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-rockchip-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-rockchip-6.12.0-160000.6.1">dtb-rockchip-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-socionext-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-socionext-6.12.0-160000.6.1">dtb-socionext-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-sprd-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-sprd-6.12.0-160000.6.1">dtb-sprd-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="dtb-xilinx-6.12.0-160000.6.1">
      <FullProductName ProductID="dtb-xilinx-6.12.0-160000.6.1">dtb-xilinx-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="gfs2-kmp-64kb-6.12.0-160000.6.1">
      <FullProductName ProductID="gfs2-kmp-64kb-6.12.0-160000.6.1">gfs2-kmp-64kb-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="gfs2-kmp-default">
      <FullProductName ProductID="gfs2-kmp-default">gfs2-kmp-default</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="gfs2-kmp-default-6.12.0-160000.6.1">
      <FullProductName ProductID="gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="gfs2-kmp-rt-6.12.0-160000.6.1">
      <FullProductName ProductID="gfs2-kmp-rt-6.12.0-160000.6.1">gfs2-kmp-rt-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="iptables-1.8.9-4.1">
      <FullProductName ProductID="iptables-1.8.9-4.1" CPE="cpe:2.3:a:netfilter:iptables:1.8.9:*:*:*:*:*:*:*">iptables-1.8.9-4.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-64kb-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-64kb-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-64kb-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-64kb-devel-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-64kb-devel-6.12.0-160000.6.1">kernel-64kb-devel-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-64kb-extra-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-64kb-extra-6.12.0-160000.6.1">kernel-64kb-extra-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-64kb-optional-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-64kb-optional-6.12.0-160000.6.1">kernel-64kb-optional-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default">
      <FullProductName ProductID="kernel-default" CPE="cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*">kernel-default</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-default-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-default-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-base">
      <FullProductName ProductID="kernel-default-base" CPE="cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*">kernel-default-base</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-base-6.12.0-160000.6.1.160000.2.4">
      <FullProductName ProductID="kernel-default-base-6.12.0-160000.6.1.160000.2.4" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-default-base-6.12.0-160000.6.1.160000.2.4</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-devel">
      <FullProductName ProductID="kernel-default-devel">kernel-default-devel</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-devel-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-default-devel-6.12.0-160000.6.1">kernel-default-devel-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-extra">
      <FullProductName ProductID="kernel-default-extra">kernel-default-extra</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-extra-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-default-extra-6.12.0-160000.6.1">kernel-default-extra-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-kgraft">
      <FullProductName ProductID="kernel-default-kgraft">kernel-default-kgraft</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-kgraft-devel">
      <FullProductName ProductID="kernel-default-kgraft-devel">kernel-default-kgraft-devel</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-livepatch">
      <FullProductName ProductID="kernel-default-livepatch">kernel-default-livepatch</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-livepatch-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-default-livepatch-6.12.0-160000.6.1">kernel-default-livepatch-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-livepatch-devel">
      <FullProductName ProductID="kernel-default-livepatch-devel">kernel-default-livepatch-devel</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-man">
      <FullProductName ProductID="kernel-default-man">kernel-default-man</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-optional">
      <FullProductName ProductID="kernel-default-optional">kernel-default-optional</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-optional-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-default-optional-6.12.0-160000.6.1">kernel-default-optional-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-vdso">
      <FullProductName ProductID="kernel-default-vdso">kernel-default-vdso</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-default-vdso-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-default-vdso-6.12.0-160000.6.1">kernel-default-vdso-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-devel">
      <FullProductName ProductID="kernel-devel" CPE="cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*">kernel-devel</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-devel-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-devel-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-devel-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-devel-azure">
      <FullProductName ProductID="kernel-devel-azure">kernel-devel-azure</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-devel-rt">
      <FullProductName ProductID="kernel-devel-rt">kernel-devel-rt</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-docs-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-docs-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-docs-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-docs-html-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-docs-html-6.12.0-160000.6.1">kernel-docs-html-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-kvmsmall-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-kvmsmall-6.12.0-160000.6.1" CPE="cpe:2.3:a:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-kvmsmall-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-kvmsmall-devel-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-kvmsmall-devel-6.12.0-160000.6.1">kernel-kvmsmall-devel-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-kvmsmall-vdso-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-kvmsmall-vdso-6.12.0-160000.6.1">kernel-kvmsmall-vdso-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3">
      <FullProductName ProductID="kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3">kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-livepatch-6_12_0-160000_5-rt-4-160000.3.4">
      <FullProductName ProductID="kernel-livepatch-6_12_0-160000_5-rt-4-160000.3.4">kernel-livepatch-6_12_0-160000_5-rt-4-160000.3.4</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-macros">
      <FullProductName ProductID="kernel-macros">kernel-macros</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-macros-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-macros-6.12.0-160000.6.1">kernel-macros-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-obs-build-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-obs-build-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-obs-build-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-obs-qa-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-obs-qa-6.12.0-160000.6.1" CPE="cpe:2.3:a:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-obs-qa-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-rt">
      <FullProductName ProductID="kernel-rt" CPE="cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*">kernel-rt</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-rt-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-rt-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-rt-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-rt-devel-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-rt-devel-6.12.0-160000.6.1">kernel-rt-devel-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-rt-extra-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-rt-extra-6.12.0-160000.6.1">kernel-rt-extra-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-rt-livepatch-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-rt-livepatch-6.12.0-160000.6.1">kernel-rt-livepatch-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-rt-optional-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-rt-optional-6.12.0-160000.6.1">kernel-rt-optional-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-rt-vdso-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-rt-vdso-6.12.0-160000.6.1">kernel-rt-vdso-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-source">
      <FullProductName ProductID="kernel-source" CPE="cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*">kernel-source</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-source-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-source-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-source-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-source-azure">
      <FullProductName ProductID="kernel-source-azure" CPE="cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*">kernel-source-azure</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-source-rt">
      <FullProductName ProductID="kernel-source-rt" CPE="cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*">kernel-source-rt</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-source-vanilla">
      <FullProductName ProductID="kernel-source-vanilla">kernel-source-vanilla</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-source-vanilla-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-source-vanilla-6.12.0-160000.6.1">kernel-source-vanilla-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-syms-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-syms-6.12.0-160000.6.1" CPE="cpe:2.3:o:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-syms-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kernel-zfcpdump-6.12.0-160000.6.1">
      <FullProductName ProductID="kernel-zfcpdump-6.12.0-160000.6.1" CPE="cpe:2.3:a:linux:linux_kernel:6.12.0:*:*:*:*:*:*:*">kernel-zfcpdump-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kselftests-kmp-64kb-6.12.0-160000.6.1">
      <FullProductName ProductID="kselftests-kmp-64kb-6.12.0-160000.6.1">kselftests-kmp-64kb-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kselftests-kmp-default">
      <FullProductName ProductID="kselftests-kmp-default">kselftests-kmp-default</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kselftests-kmp-default-6.12.0-160000.6.1">
      <FullProductName ProductID="kselftests-kmp-default-6.12.0-160000.6.1">kselftests-kmp-default-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="kselftests-kmp-rt-6.12.0-160000.6.1">
      <FullProductName ProductID="kselftests-kmp-rt-6.12.0-160000.6.1">kselftests-kmp-rt-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="libgcrypt20-1.10.3-slfo.1.1_2.1">
      <FullProductName ProductID="libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="libip4tc2-1.8.9-4.1">
      <FullProductName ProductID="libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="libip6tc2-1.8.9-4.1">
      <FullProductName ProductID="libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="libxtables12-1.8.9-4.1">
      <FullProductName ProductID="libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="ocfs2-kmp-64kb-6.12.0-160000.6.1">
      <FullProductName ProductID="ocfs2-kmp-64kb-6.12.0-160000.6.1">ocfs2-kmp-64kb-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="ocfs2-kmp-default">
      <FullProductName ProductID="ocfs2-kmp-default">ocfs2-kmp-default</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="ocfs2-kmp-default-6.12.0-160000.6.1">
      <FullProductName ProductID="ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="ocfs2-kmp-rt-6.12.0-160000.6.1">
      <FullProductName ProductID="ocfs2-kmp-rt-6.12.0-160000.6.1">ocfs2-kmp-rt-6.12.0-160000.6.1</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="reiserfs-kmp-default">
      <FullProductName ProductID="reiserfs-kmp-default">reiserfs-kmp-default</FullProductName>
    </Branch>
    <Branch Type="Product Version" Name="xtables-plugins-1.8.9-4.1">
      <FullProductName ProductID="xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1</FullProductName>
    </Branch>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
      <FullProductName ProductID="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
      <FullProductName ProductID="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
      <FullProductName ProductID="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
      <FullProductName ProductID="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
      <FullProductName ProductID="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42">
      <FullProductName ProductID="Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39">
      <FullProductName ProductID="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39">
      <FullProductName ProductID="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39">
      <FullProductName ProductID="Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41">
      <FullProductName ProductID="Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41">
      <FullProductName ProductID="Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39">
      <FullProductName ProductID="Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39">
      <FullProductName ProductID="Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/toolbox:13.2-9.1">
      <FullProductName ProductID="Container suse/sl-micro/6.0/toolbox:13.2-9.1:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.0/toolbox:13.2-9.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.0/toolbox:13.2-9.1">
      <FullProductName ProductID="Container suse/sl-micro/6.0/toolbox:13.2-9.1:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Container suse/sl-micro/6.0/toolbox:13.2-9.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2">
      <FullProductName ProductID="Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27">
      <FullProductName ProductID="Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29">
      <FullProductName ProductID="Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14">
      <FullProductName ProductID="Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro">
      <FullProductName ProductID="Image SL-Micro:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro">
      <FullProductName ProductID="Image SL-Micro:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SL-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro">
      <FullProductName ProductID="Image SL-Micro:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SL-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Azure">
      <FullProductName ProductID="Image SL-Micro-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-BYOS-Azure">
      <FullProductName ProductID="Image SL-Micro-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-BYOS-EC2">
      <FullProductName ProductID="Image SL-Micro-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-BYOS-GCE">
      <FullProductName ProductID="Image SL-Micro-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Base">
      <FullProductName ProductID="Image SL-Micro-Base:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Base</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Base-RT">
      <FullProductName ProductID="Image SL-Micro-Base-RT:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Base-RT</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Base-RT-SelfInstall">
      <FullProductName ProductID="Image SL-Micro-Base-RT-SelfInstall:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Base-RT-SelfInstall</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Base-RT-encrypted">
      <FullProductName ProductID="Image SL-Micro-Base-RT-encrypted:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Base-RT-encrypted</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Base-SelfInstall">
      <FullProductName ProductID="Image SL-Micro-Base-SelfInstall:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Base-SelfInstall</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Base-encrypted">
      <FullProductName ProductID="Image SL-Micro-Base-encrypted:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Base-encrypted</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Base-qcow">
      <FullProductName ProductID="Image SL-Micro-Base-qcow:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Base-qcow</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Default">
      <FullProductName ProductID="Image SL-Micro-Default:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Default</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Default-SelfInstall">
      <FullProductName ProductID="Image SL-Micro-Default-SelfInstall:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Default-SelfInstall</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Default-encrypted">
      <FullProductName ProductID="Image SL-Micro-Default-encrypted:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Default-encrypted</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-Default-qcow">
      <FullProductName ProductID="Image SL-Micro-Default-qcow:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-Default-qcow</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SL-Micro-EC2">
      <FullProductName ProductID="Image SL-Micro-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SL-Micro-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro">
      <FullProductName ProductID="Image SLE-Micro:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro">
      <FullProductName ProductID="Image SLE-Micro:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro">
      <FullProductName ProductID="Image SLE-Micro:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro">
      <FullProductName ProductID="Image SLE-Micro:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro">
      <FullProductName ProductID="Image SLE-Micro:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro">
      <FullProductName ProductID="Image SLE-Micro:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-Azure">
      <FullProductName ProductID="Image SLE-Micro-Azure:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-Azure">
      <FullProductName ProductID="Image SLE-Micro-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-Azure">
      <FullProductName ProductID="Image SLE-Micro-Azure:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-Azure">
      <FullProductName ProductID="Image SLE-Micro-Azure:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-Azure">
      <FullProductName ProductID="Image SLE-Micro-Azure:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-Azure">
      <FullProductName ProductID="Image SLE-Micro-Azure:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS">
      <FullProductName ProductID="Image SLE-Micro-BYOS:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS">
      <FullProductName ProductID="Image SLE-Micro-BYOS:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS">
      <FullProductName ProductID="Image SLE-Micro-BYOS:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS">
      <FullProductName ProductID="Image SLE-Micro-BYOS:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS">
      <FullProductName ProductID="Image SLE-Micro-BYOS:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS">
      <FullProductName ProductID="Image SLE-Micro-BYOS:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro-BYOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-Azure">
      <FullProductName ProductID="Image SLE-Micro-BYOS-Azure:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-Azure">
      <FullProductName ProductID="Image SLE-Micro-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-Azure">
      <FullProductName ProductID="Image SLE-Micro-BYOS-Azure:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-Azure">
      <FullProductName ProductID="Image SLE-Micro-BYOS-Azure:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-Azure">
      <FullProductName ProductID="Image SLE-Micro-BYOS-Azure:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-Azure">
      <FullProductName ProductID="Image SLE-Micro-BYOS-Azure:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-EC2">
      <FullProductName ProductID="Image SLE-Micro-BYOS-EC2:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-EC2">
      <FullProductName ProductID="Image SLE-Micro-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-EC2">
      <FullProductName ProductID="Image SLE-Micro-BYOS-EC2:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-EC2">
      <FullProductName ProductID="Image SLE-Micro-BYOS-EC2:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-EC2">
      <FullProductName ProductID="Image SLE-Micro-BYOS-EC2:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-EC2">
      <FullProductName ProductID="Image SLE-Micro-BYOS-EC2:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-GCE">
      <FullProductName ProductID="Image SLE-Micro-BYOS-GCE:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-GCE">
      <FullProductName ProductID="Image SLE-Micro-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-GCE">
      <FullProductName ProductID="Image SLE-Micro-BYOS-GCE:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-GCE">
      <FullProductName ProductID="Image SLE-Micro-BYOS-GCE:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-GCE">
      <FullProductName ProductID="Image SLE-Micro-BYOS-GCE:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-BYOS-GCE">
      <FullProductName ProductID="Image SLE-Micro-BYOS-GCE:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-EC2">
      <FullProductName ProductID="Image SLE-Micro-EC2:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-EC2">
      <FullProductName ProductID="Image SLE-Micro-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-EC2">
      <FullProductName ProductID="Image SLE-Micro-EC2:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-EC2">
      <FullProductName ProductID="Image SLE-Micro-EC2:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-EC2">
      <FullProductName ProductID="Image SLE-Micro-EC2:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-EC2">
      <FullProductName ProductID="Image SLE-Micro-EC2:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="iptables-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-GCE">
      <FullProductName ProductID="Image SLE-Micro-GCE:iptables-1.8.9-4.1">iptables-1.8.9-4.1 as a component of Image SLE-Micro-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-GCE">
      <FullProductName ProductID="Image SLE-Micro-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SLE-Micro-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip4tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-GCE">
      <FullProductName ProductID="Image SLE-Micro-GCE:libip4tc2-1.8.9-4.1">libip4tc2-1.8.9-4.1 as a component of Image SLE-Micro-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libip6tc2-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-GCE">
      <FullProductName ProductID="Image SLE-Micro-GCE:libip6tc2-1.8.9-4.1">libip6tc2-1.8.9-4.1 as a component of Image SLE-Micro-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libxtables12-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-GCE">
      <FullProductName ProductID="Image SLE-Micro-GCE:libxtables12-1.8.9-4.1">libxtables12-1.8.9-4.1 as a component of Image SLE-Micro-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="xtables-plugins-1.8.9-4.1" RelationType="Default Component Of" RelatesToProductReference="Image SLE-Micro-GCE">
      <FullProductName ProductID="Image SLE-Micro-GCE:xtables-plugins-1.8.9-4.1">xtables-plugins-1.8.9-4.1 as a component of Image SLE-Micro-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-Azure-3P">
      <FullProductName ProductID="Image SLES-Azure-3P:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-Azure-3P</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-Azure-Basic">
      <FullProductName ProductID="Image SLES-Azure-Basic:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-Azure-Basic</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-Azure-Standard">
      <FullProductName ProductID="Image SLES-Azure-Standard:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-Azure-Standard</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-BYOS-Azure">
      <FullProductName ProductID="Image SLES-BYOS-Azure:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-BYOS-EC2">
      <FullProductName ProductID="Image SLES-BYOS-EC2:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-BYOS-GCE">
      <FullProductName ProductID="Image SLES-BYOS-GCE:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-CHOST-BYOS-Aliyun">
      <FullProductName ProductID="Image SLES-CHOST-BYOS-Aliyun:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-CHOST-BYOS-Aliyun</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-CHOST-BYOS-Azure">
      <FullProductName ProductID="Image SLES-CHOST-BYOS-Azure:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-CHOST-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-CHOST-BYOS-EC2">
      <FullProductName ProductID="Image SLES-CHOST-BYOS-EC2:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-CHOST-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-CHOST-BYOS-GCE">
      <FullProductName ProductID="Image SLES-CHOST-BYOS-GCE:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-CHOST-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-CHOST-BYOS-GDC">
      <FullProductName ProductID="Image SLES-CHOST-BYOS-GDC:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-CHOST-BYOS-GDC</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-CHOST-BYOS-SAP-CCloud">
      <FullProductName ProductID="Image SLES-CHOST-BYOS-SAP-CCloud:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-CHOST-BYOS-SAP-CCloud</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-EC2">
      <FullProductName ProductID="Image SLES-EC2:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-GCE">
      <FullProductName ProductID="Image SLES-GCE:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-Hardened-BYOS-Azure">
      <FullProductName ProductID="Image SLES-Hardened-BYOS-Azure:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-Hardened-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-Hardened-BYOS-EC2">
      <FullProductName ProductID="Image SLES-Hardened-BYOS-EC2:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-Hardened-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-Hardened-BYOS-GCE">
      <FullProductName ProductID="Image SLES-Hardened-BYOS-GCE:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-Hardened-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure">
      <FullProductName ProductID="Image SLES-SAP-Azure:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure">
      <FullProductName ProductID="Image SLES-SAP-Azure:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure">
      <FullProductName ProductID="Image SLES-SAP-Azure:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure">
      <FullProductName ProductID="Image SLES-SAP-Azure:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure">
      <FullProductName ProductID="Image SLES-SAP-Azure:ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure-3P">
      <FullProductName ProductID="Image SLES-SAP-Azure-3P:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure-3P</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure-3P">
      <FullProductName ProductID="Image SLES-SAP-Azure-3P:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure-3P</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure-3P">
      <FullProductName ProductID="Image SLES-SAP-Azure-3P:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure-3P</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure-3P">
      <FullProductName ProductID="Image SLES-SAP-Azure-3P:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure-3P</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-Azure-3P">
      <FullProductName ProductID="Image SLES-SAP-Azure-3P:ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-Azure-3P</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-Azure">
      <FullProductName ProductID="Image SLES-SAP-BYOS-Azure:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-Azure">
      <FullProductName ProductID="Image SLES-SAP-BYOS-Azure:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-Azure">
      <FullProductName ProductID="Image SLES-SAP-BYOS-Azure:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-Azure">
      <FullProductName ProductID="Image SLES-SAP-BYOS-Azure:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-Azure">
      <FullProductName ProductID="Image SLES-SAP-BYOS-Azure:ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-EC2">
      <FullProductName ProductID="Image SLES-SAP-BYOS-EC2:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-EC2">
      <FullProductName ProductID="Image SLES-SAP-BYOS-EC2:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-EC2">
      <FullProductName ProductID="Image SLES-SAP-BYOS-EC2:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-EC2">
      <FullProductName ProductID="Image SLES-SAP-BYOS-EC2:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-EC2">
      <FullProductName ProductID="Image SLES-SAP-BYOS-EC2:ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-GCE">
      <FullProductName ProductID="Image SLES-SAP-BYOS-GCE:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-GCE">
      <FullProductName ProductID="Image SLES-SAP-BYOS-GCE:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-GCE">
      <FullProductName ProductID="Image SLES-SAP-BYOS-GCE:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-GCE">
      <FullProductName ProductID="Image SLES-SAP-BYOS-GCE:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-BYOS-GCE">
      <FullProductName ProductID="Image SLES-SAP-BYOS-GCE:ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-GCE">
      <FullProductName ProductID="Image SLES-SAP-GCE:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-GCE">
      <FullProductName ProductID="Image SLES-SAP-GCE:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-GCE">
      <FullProductName ProductID="Image SLES-SAP-GCE:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-GCE">
      <FullProductName ProductID="Image SLES-SAP-GCE:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAP-GCE">
      <FullProductName ProductID="Image SLES-SAP-GCE:ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1 as a component of Image SLES-SAP-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAPCAL-Azure">
      <FullProductName ProductID="Image SLES-SAPCAL-Azure:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAPCAL-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAPCAL-EC2">
      <FullProductName ProductID="Image SLES-SAPCAL-EC2:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAPCAL-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="Image SLES-SAPCAL-GCE">
      <FullProductName ProductID="Image SLES-SAPCAL-GCE:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of Image SLES-SAPCAL-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Server-Azure-llc">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-Azure-llc:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Server-Azure-llc</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Server-Azure-ltd">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-Azure-ltd:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Server-Azure-ltd</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Server-EC2-llc">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-EC2-llc:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Server-EC2-llc</FullProductName>
    </Relationship>
    <Relationship ProductReference="libgcrypt20-1.10.3-slfo.1.1_2.1" RelationType="Default Component Of" RelatesToProductReference="Image SUSE-Multi-Linux-Manager-Server-EC2-ltd">
      <FullProductName ProductID="Image SUSE-Multi-Linux-Manager-Server-EC2-ltd:libgcrypt20-1.10.3-slfo.1.1_2.1">libgcrypt20-1.10.3-slfo.1.1_2.1 as a component of Image SUSE-Multi-Linux-Manager-Server-EC2-ltd</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 16.0:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise High Availability Extension 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 16.0:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise High Availability Extension 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 16.0:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise High Availability Extension 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.6.1">kernel-64kb-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.6.1">kernel-64kb-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.6.1">kernel-64kb-extra-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base-6.12.0-160000.6.1.160000.2.4" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4">kernel-default-base-6.12.0-160000.6.1.160000.2.4 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.6.1">kernel-default-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.6.1">kernel-default-extra-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.6.1">kernel-default-livepatch-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.6.1">kernel-default-vdso-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.6.1">kernel-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.6.1">kernel-docs-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-html-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.6.1">kernel-docs-html-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.6.1">kernel-kvmsmall-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1">kernel-kvmsmall-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1">kernel-kvmsmall-vdso-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3">kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.6.1">kernel-macros-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-obs-qa-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.6.1">kernel-obs-qa-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.6.1">kernel-source-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-vanilla-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.6.1">kernel-source-vanilla-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-syms-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.6.1">kernel-syms-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-zfcpdump-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.6.1">kernel-zfcpdump-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-64kb-6.12.0-160000.6.1">kernel-64kb-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-64kb-devel-6.12.0-160000.6.1">kernel-64kb-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-64kb-extra-6.12.0-160000.6.1">kernel-64kb-extra-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base-6.12.0-160000.6.1.160000.2.4" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4">kernel-default-base-6.12.0-160000.6.1.160000.2.4 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-devel-6.12.0-160000.6.1">kernel-default-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-extra-6.12.0-160000.6.1">kernel-default-extra-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-livepatch-6.12.0-160000.6.1">kernel-default-livepatch-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-vdso-6.12.0-160000.6.1">kernel-default-vdso-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-devel-6.12.0-160000.6.1">kernel-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-docs-6.12.0-160000.6.1">kernel-docs-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-html-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-docs-html-6.12.0-160000.6.1">kernel-docs-html-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-kvmsmall-6.12.0-160000.6.1">kernel-kvmsmall-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1">kernel-kvmsmall-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1">kernel-kvmsmall-vdso-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3">kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-macros-6.12.0-160000.6.1">kernel-macros-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-obs-qa-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-obs-qa-6.12.0-160000.6.1">kernel-obs-qa-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-source-6.12.0-160000.6.1">kernel-source-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-vanilla-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-source-vanilla-6.12.0-160000.6.1">kernel-source-vanilla-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-syms-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-syms-6.12.0-160000.6.1">kernel-syms-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-zfcpdump-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP applications 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP applications 16.0:kernel-zfcpdump-6.12.0-160000.6.1">kernel-zfcpdump-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server for SAP applications 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-64kb-6.12.0-160000.6.1">kernel-64kb-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-64kb-devel-6.12.0-160000.6.1">kernel-64kb-devel-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base-6.12.0-160000.6.1.160000.2.4" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-default-base-6.12.0-160000.6.1.160000.2.4">kernel-default-base-6.12.0-160000.6.1.160000.2.4 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-default-devel-6.12.0-160000.6.1">kernel-default-devel-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-default-extra-6.12.0-160000.6.1">kernel-default-extra-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-default-livepatch-6.12.0-160000.6.1">kernel-default-livepatch-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-devel-6.12.0-160000.6.1">kernel-devel-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3">kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-livepatch-6_12_0-160000_5-rt-4-160000.3.4" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-livepatch-6_12_0-160000_5-rt-4-160000.3.4">kernel-livepatch-6_12_0-160000_5-rt-4-160000.3.4 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-macros-6.12.0-160000.6.1">kernel-macros-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-rt-6.12.0-160000.6.1">kernel-rt-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-rt-devel-6.12.0-160000.6.1">kernel-rt-devel-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-livepatch-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-rt-livepatch-6.12.0-160000.6.1">kernel-rt-livepatch-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.2">
      <FullProductName ProductID="SUSE Linux Micro 6.2:kernel-source-6.12.0-160000.6.1">kernel-source-6.12.0-160000.6.1 as a component of SUSE Linux Micro 6.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:cluster-md-kmp-64kb-6.12.0-160000.6.1">cluster-md-kmp-64kb-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:cluster-md-kmp-default-6.12.0-160000.6.1">cluster-md-kmp-default-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-rt-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:cluster-md-kmp-rt-6.12.0-160000.6.1">cluster-md-kmp-rt-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dlm-kmp-64kb-6.12.0-160000.6.1">dlm-kmp-64kb-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dlm-kmp-default-6.12.0-160000.6.1">dlm-kmp-default-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-rt-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dlm-kmp-rt-6.12.0-160000.6.1">dlm-kmp-rt-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-allwinner-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-allwinner-6.12.0-160000.6.1">dtb-allwinner-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-altera-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-altera-6.12.0-160000.6.1">dtb-altera-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-amazon-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-amazon-6.12.0-160000.6.1">dtb-amazon-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-amd-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-amd-6.12.0-160000.6.1">dtb-amd-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-amlogic-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-amlogic-6.12.0-160000.6.1">dtb-amlogic-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-apm-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-apm-6.12.0-160000.6.1">dtb-apm-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-apple-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-apple-6.12.0-160000.6.1">dtb-apple-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-arm-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-arm-6.12.0-160000.6.1">dtb-arm-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-broadcom-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-broadcom-6.12.0-160000.6.1">dtb-broadcom-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-cavium-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-cavium-6.12.0-160000.6.1">dtb-cavium-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-exynos-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-exynos-6.12.0-160000.6.1">dtb-exynos-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-freescale-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-freescale-6.12.0-160000.6.1">dtb-freescale-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-hisilicon-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-hisilicon-6.12.0-160000.6.1">dtb-hisilicon-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-lg-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-lg-6.12.0-160000.6.1">dtb-lg-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-marvell-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-marvell-6.12.0-160000.6.1">dtb-marvell-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-mediatek-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-mediatek-6.12.0-160000.6.1">dtb-mediatek-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-nvidia-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-nvidia-6.12.0-160000.6.1">dtb-nvidia-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-qcom-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-qcom-6.12.0-160000.6.1">dtb-qcom-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-renesas-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-renesas-6.12.0-160000.6.1">dtb-renesas-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-rockchip-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-rockchip-6.12.0-160000.6.1">dtb-rockchip-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-socionext-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-socionext-6.12.0-160000.6.1">dtb-socionext-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-sprd-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-sprd-6.12.0-160000.6.1">dtb-sprd-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="dtb-xilinx-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:dtb-xilinx-6.12.0-160000.6.1">dtb-xilinx-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:gfs2-kmp-64kb-6.12.0-160000.6.1">gfs2-kmp-64kb-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:gfs2-kmp-default-6.12.0-160000.6.1">gfs2-kmp-default-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-rt-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:gfs2-kmp-rt-6.12.0-160000.6.1">gfs2-kmp-rt-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-64kb-6.12.0-160000.6.1">kernel-64kb-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-64kb-devel-6.12.0-160000.6.1">kernel-64kb-devel-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-64kb-extra-6.12.0-160000.6.1">kernel-64kb-extra-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-optional-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-64kb-optional-6.12.0-160000.6.1">kernel-64kb-optional-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base-6.12.0-160000.6.1.160000.2.4" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4">kernel-default-base-6.12.0-160000.6.1.160000.2.4 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-default-devel-6.12.0-160000.6.1">kernel-default-devel-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-default-extra-6.12.0-160000.6.1">kernel-default-extra-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-optional-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-default-optional-6.12.0-160000.6.1">kernel-default-optional-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-default-vdso-6.12.0-160000.6.1">kernel-default-vdso-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-devel-6.12.0-160000.6.1">kernel-devel-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-docs-6.12.0-160000.6.1">kernel-docs-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-html-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-docs-html-6.12.0-160000.6.1">kernel-docs-html-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-kvmsmall-6.12.0-160000.6.1">kernel-kvmsmall-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1">kernel-kvmsmall-devel-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1">kernel-kvmsmall-vdso-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-macros-6.12.0-160000.6.1">kernel-macros-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-obs-build-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-obs-build-6.12.0-160000.6.1">kernel-obs-build-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-obs-qa-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-obs-qa-6.12.0-160000.6.1">kernel-obs-qa-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-rt-6.12.0-160000.6.1">kernel-rt-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-rt-devel-6.12.0-160000.6.1">kernel-rt-devel-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-rt-extra-6.12.0-160000.6.1">kernel-rt-extra-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-optional-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-rt-optional-6.12.0-160000.6.1">kernel-rt-optional-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-rt-vdso-6.12.0-160000.6.1">kernel-rt-vdso-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-source-6.12.0-160000.6.1">kernel-source-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-vanilla-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-source-vanilla-6.12.0-160000.6.1">kernel-source-vanilla-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-syms-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-syms-6.12.0-160000.6.1">kernel-syms-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-zfcpdump-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kernel-zfcpdump-6.12.0-160000.6.1">kernel-zfcpdump-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kselftests-kmp-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kselftests-kmp-64kb-6.12.0-160000.6.1">kselftests-kmp-64kb-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kselftests-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kselftests-kmp-default-6.12.0-160000.6.1">kselftests-kmp-default-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kselftests-kmp-rt-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:kselftests-kmp-rt-6.12.0-160000.6.1">kselftests-kmp-rt-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:ocfs2-kmp-64kb-6.12.0-160000.6.1">ocfs2-kmp-64kb-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:ocfs2-kmp-default-6.12.0-160000.6.1">ocfs2-kmp-default-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-rt-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 16.0">
      <FullProductName ProductID="openSUSE Leap 16.0:ocfs2-kmp-rt-6.12.0-160000.6.1">ocfs2-kmp-rt-6.12.0-160000.6.1 as a component of openSUSE Leap 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.6.1">kernel-64kb-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.6.1">kernel-64kb-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-64kb-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.6.1">kernel-64kb-extra-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.6.1">kernel-default-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base-6.12.0-160000.6.1.160000.2.4" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4">kernel-default-base-6.12.0-160000.6.1.160000.2.4 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.6.1">kernel-default-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.6.1">kernel-default-extra-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.6.1">kernel-default-livepatch-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.6.1">kernel-default-vdso-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.6.1">kernel-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.6.1">kernel-docs-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-docs-html-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.6.1">kernel-docs-html-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.6.1">kernel-kvmsmall-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-devel-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1">kernel-kvmsmall-devel-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-kvmsmall-vdso-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1">kernel-kvmsmall-vdso-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3">kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.6.1">kernel-macros-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-obs-qa-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.6.1">kernel-obs-qa-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.6.1">kernel-source-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-vanilla-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.6.1">kernel-source-vanilla-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-syms-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.6.1">kernel-syms-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-zfcpdump-6.12.0-160000.6.1" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 16.0">
      <FullProductName ProductID="SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.6.1">kernel-zfcpdump-6.12.0-160000.6.1 as a component of SUSE Linux Enterprise Server 16.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SLES-LTSS-TERADATA 15 SP2">
      <FullProductName ProductID="SLES-LTSS-TERADATA 15 SP2:kernel-default">kernel-default as a component of SLES-LTSS-TERADATA 15 SP2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SLES-LTSS-TERADATA 15 SP2">
      <FullProductName ProductID="SLES-LTSS-TERADATA 15 SP2:kernel-source">kernel-source as a component of SLES-LTSS-TERADATA 15 SP2</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP3:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP3:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP3:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP3:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP3:kernel-default">kernel-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP3:kernel-source">kernel-source as a component of SUSE Linux Enterprise High Availability Extension 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP6:kernel-default">kernel-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP6:kernel-source">kernel-source as a component of SUSE Linux Enterprise High Availability Extension 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-default">kernel-default as a component of SUSE Linux Enterprise High Availability Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Availability Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-source">kernel-source as a component of SUSE Linux Enterprise High Availability Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default">kernel-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-source">kernel-source as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-kgraft" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 12 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft">kernel-default-kgraft as a component of SUSE Linux Enterprise Live Patching 12 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-kgraft-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 12 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft-devel">kernel-default-kgraft-devel as a component of SUSE Linux Enterprise Live Patching 12 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 12 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 12 SP5:kernel-default">kernel-default as a component of SUSE Linux Enterprise Live Patching 12 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 12 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 12 SP5:kernel-source">kernel-source as a component of SUSE Linux Enterprise Live Patching 12 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch">kernel-default-livepatch as a component of SUSE Linux Enterprise Live Patching 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch-devel">kernel-default-livepatch-devel as a component of SUSE Linux Enterprise Live Patching 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP3:kernel-default">kernel-default as a component of SUSE Linux Enterprise Live Patching 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP3:kernel-source">kernel-source as a component of SUSE Linux Enterprise Live Patching 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch">kernel-default-livepatch as a component of SUSE Linux Enterprise Live Patching 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch-devel">kernel-default-livepatch-devel as a component of SUSE Linux Enterprise Live Patching 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP4:kernel-default">kernel-default as a component of SUSE Linux Enterprise Live Patching 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP4:kernel-source">kernel-source as a component of SUSE Linux Enterprise Live Patching 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch">kernel-default-livepatch as a component of SUSE Linux Enterprise Live Patching 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch-devel">kernel-default-livepatch-devel as a component of SUSE Linux Enterprise Live Patching 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP5:kernel-default">kernel-default as a component of SUSE Linux Enterprise Live Patching 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP5:kernel-source">kernel-source as a component of SUSE Linux Enterprise Live Patching 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch">kernel-default-livepatch as a component of SUSE Linux Enterprise Live Patching 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel">kernel-default-livepatch-devel as a component of SUSE Linux Enterprise Live Patching 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP6:kernel-default">kernel-default as a component of SUSE Linux Enterprise Live Patching 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP6:kernel-source">kernel-source as a component of SUSE Linux Enterprise Live Patching 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch">kernel-default-livepatch as a component of SUSE Linux Enterprise Live Patching 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch-devel">kernel-default-livepatch-devel as a component of SUSE Linux Enterprise Live Patching 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP7:kernel-default">kernel-default as a component of SUSE Linux Enterprise Live Patching 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Live Patching 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Live Patching 15 SP7:kernel-source">kernel-source as a component of SUSE Linux Enterprise Live Patching 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.0">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.0:kernel-default">kernel-default as a component of SUSE Linux Enterprise Micro 5.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.1">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.1:kernel-default">kernel-default as a component of SUSE Linux Enterprise Micro 5.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.1">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.1:kernel-rt">kernel-rt as a component of SUSE Linux Enterprise Micro 5.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.1">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.1:kernel-source">kernel-source as a component of SUSE Linux Enterprise Micro 5.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.1">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.1:kernel-source-rt">kernel-source-rt as a component of SUSE Linux Enterprise Micro 5.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.2">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.2:kernel-default">kernel-default as a component of SUSE Linux Enterprise Micro 5.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.2">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.2:kernel-rt">kernel-rt as a component of SUSE Linux Enterprise Micro 5.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.2">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.2:kernel-source">kernel-source as a component of SUSE Linux Enterprise Micro 5.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.2">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.2:kernel-source-rt">kernel-source-rt as a component of SUSE Linux Enterprise Micro 5.2</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.3">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.3:kernel-default">kernel-default as a component of SUSE Linux Enterprise Micro 5.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.3">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.3:kernel-rt">kernel-rt as a component of SUSE Linux Enterprise Micro 5.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.3">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.3:kernel-source">kernel-source as a component of SUSE Linux Enterprise Micro 5.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.3">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.3:kernel-source-rt">kernel-source-rt as a component of SUSE Linux Enterprise Micro 5.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.4">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.4:kernel-default">kernel-default as a component of SUSE Linux Enterprise Micro 5.4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.4">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.4:kernel-rt">kernel-rt as a component of SUSE Linux Enterprise Micro 5.4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.4">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.4:kernel-source">kernel-source as a component of SUSE Linux Enterprise Micro 5.4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.4">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.4:kernel-source-rt">kernel-source-rt as a component of SUSE Linux Enterprise Micro 5.4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.5">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.5:kernel-default">kernel-default as a component of SUSE Linux Enterprise Micro 5.5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.5">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.5:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Micro 5.5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.5">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.5:kernel-source">kernel-source as a component of SUSE Linux Enterprise Micro 5.5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.5">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.5:kernel-devel-rt">kernel-devel-rt as a component of SUSE Linux Enterprise Micro 5.5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Micro 5.5">
      <FullProductName ProductID="SUSE Linux Enterprise Micro 5.5:kernel-source-rt">kernel-source-rt as a component of SUSE Linux Enterprise Micro 5.5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default">kernel-default as a component of SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-source">kernel-source as a component of SUSE Linux Enterprise Module for Basesystem 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default">kernel-default as a component of SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Basesystem 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-source">kernel-source as a component of SUSE Linux Enterprise Module for Basesystem 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-default">kernel-default as a component of SUSE Linux Enterprise Module for Development Tools 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-source">kernel-source as a component of SUSE Linux Enterprise Module for Development Tools 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-default">kernel-default as a component of SUSE Linux Enterprise Module for Development Tools 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Development Tools 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-source">kernel-source as a component of SUSE Linux Enterprise Module for Development Tools 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Legacy 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP6:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Module for Legacy 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Legacy 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP6:kernel-default">kernel-default as a component of SUSE Linux Enterprise Module for Legacy 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Legacy 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP6:kernel-source">kernel-source as a component of SUSE Linux Enterprise Module for Legacy 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Legacy 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Module for Legacy 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Legacy 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-default">kernel-default as a component of SUSE Linux Enterprise Module for Legacy 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Legacy 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-source">kernel-source as a component of SUSE Linux Enterprise Module for Legacy 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-azure" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Public Cloud 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-devel-azure">kernel-devel-azure as a component of SUSE Linux Enterprise Module for Public Cloud 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-azure" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Public Cloud 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-source-azure">kernel-source-azure as a component of SUSE Linux Enterprise Module for Public Cloud 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-azure" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Public Cloud 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-devel-azure">kernel-devel-azure as a component of SUSE Linux Enterprise Module for Public Cloud 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-azure" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Module for Public Cloud 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-source-azure">kernel-source-azure as a component of SUSE Linux Enterprise Module for Public Cloud 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 11 SP4 LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 11 SP4 LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 11 SP4 LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 11 SP4 LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE">
      <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE">
      <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-base">kernel-default-base as a component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE">
      <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE">
      <FullProductName ProductID="SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-base">kernel-default-base as a component of SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-man" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-man">kernel-default-man as a component of SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 12 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-base">kernel-default-base as a component of SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-man" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-man">kernel-default-man as a component of SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 12 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-base">kernel-default-base as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-man" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-man">kernel-default-man as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 12 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security">
      <FullProductName ProductID="SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-base">kernel-default-base as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-man" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-man">kernel-default-man as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP1-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 15 SP1-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 15 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 15 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP2-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server 15 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 15 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 15 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP2-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 15 SP2-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP3-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 15 SP3-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP4-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 15 SP4-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP5-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 15 SP5-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15 SP6-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 15 SP6-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-base" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:kernel-default-base">kernel-default-base as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-man" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:kernel-default-man">kernel-default-man as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server 15-LTSS">
      <FullProductName ProductID="SUSE Linux Enterprise Server 15-LTSS:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server 15-LTSS</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server Teradata 12 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server Teradata 12 SP3:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server Teradata 12 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server Teradata 12 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server Teradata 12 SP3:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server Teradata 12 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server Teradata 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server Teradata 15 SP4:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server Teradata 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server Teradata 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server Teradata 15 SP4:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server Teradata 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP3">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP4">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP4</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP5">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP5</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:cluster-md-kmp-default">cluster-md-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:dlm-kmp-default">dlm-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:gfs2-kmp-default">gfs2-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default">kernel-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-devel">kernel-default-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:ocfs2-kmp-default">ocfs2-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:reiserfs-kmp-default">reiserfs-kmp-default as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel">kernel-devel as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-macros">kernel-macros as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Server for SAP Applications 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source">kernel-source as a component of SUSE Linux Enterprise Server for SAP Applications 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Workstation Extension 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra">kernel-default-extra as a component of SUSE Linux Enterprise Workstation Extension 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Workstation Extension 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default">kernel-default as a component of SUSE Linux Enterprise Workstation Extension 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Workstation Extension 15 SP6">
      <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-source">kernel-source as a component of SUSE Linux Enterprise Workstation Extension 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Workstation Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra">kernel-default-extra as a component of SUSE Linux Enterprise Workstation Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Workstation Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default">kernel-default as a component of SUSE Linux Enterprise Workstation Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Enterprise Workstation Extension 15 SP7">
      <FullProductName ProductID="SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-source">kernel-source as a component of SUSE Linux Enterprise Workstation Extension 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.0">
      <FullProductName ProductID="SUSE Linux Micro 6.0:kernel-default">kernel-default as a component of SUSE Linux Micro 6.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.0">
      <FullProductName ProductID="SUSE Linux Micro 6.0:kernel-devel">kernel-devel as a component of SUSE Linux Micro 6.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.0">
      <FullProductName ProductID="SUSE Linux Micro 6.0:kernel-macros">kernel-macros as a component of SUSE Linux Micro 6.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.0">
      <FullProductName ProductID="SUSE Linux Micro 6.0:kernel-source">kernel-source as a component of SUSE Linux Micro 6.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.0">
      <FullProductName ProductID="SUSE Linux Micro 6.0:kernel-devel-rt">kernel-devel-rt as a component of SUSE Linux Micro 6.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.0">
      <FullProductName ProductID="SUSE Linux Micro 6.0:kernel-source-rt">kernel-source-rt as a component of SUSE Linux Micro 6.0</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.1">
      <FullProductName ProductID="SUSE Linux Micro 6.1:kernel-default">kernel-default as a component of SUSE Linux Micro 6.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.1">
      <FullProductName ProductID="SUSE Linux Micro 6.1:kernel-devel">kernel-devel as a component of SUSE Linux Micro 6.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.1">
      <FullProductName ProductID="SUSE Linux Micro 6.1:kernel-macros">kernel-macros as a component of SUSE Linux Micro 6.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.1">
      <FullProductName ProductID="SUSE Linux Micro 6.1:kernel-source">kernel-source as a component of SUSE Linux Micro 6.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.1">
      <FullProductName ProductID="SUSE Linux Micro 6.1:kernel-devel-rt">kernel-devel-rt as a component of SUSE Linux Micro 6.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Linux Micro 6.1">
      <FullProductName ProductID="SUSE Linux Micro 6.1:kernel-source-rt">kernel-source-rt as a component of SUSE Linux Micro 6.1</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy 4.3">
      <FullProductName ProductID="SUSE Manager Proxy 4.3:kernel-default">kernel-default as a component of SUSE Manager Proxy 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy 4.3">
      <FullProductName ProductID="SUSE Manager Proxy 4.3:kernel-default-devel">kernel-default-devel as a component of SUSE Manager Proxy 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy 4.3">
      <FullProductName ProductID="SUSE Manager Proxy 4.3:kernel-devel">kernel-devel as a component of SUSE Manager Proxy 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy 4.3">
      <FullProductName ProductID="SUSE Manager Proxy 4.3:kernel-macros">kernel-macros as a component of SUSE Manager Proxy 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy 4.3">
      <FullProductName ProductID="SUSE Manager Proxy 4.3:kernel-source">kernel-source as a component of SUSE Manager Proxy 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy LTS 4.3">
      <FullProductName ProductID="SUSE Manager Proxy LTS 4.3:kernel-default">kernel-default as a component of SUSE Manager Proxy LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy LTS 4.3">
      <FullProductName ProductID="SUSE Manager Proxy LTS 4.3:kernel-default-devel">kernel-default-devel as a component of SUSE Manager Proxy LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy LTS 4.3">
      <FullProductName ProductID="SUSE Manager Proxy LTS 4.3:kernel-devel">kernel-devel as a component of SUSE Manager Proxy LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy LTS 4.3">
      <FullProductName ProductID="SUSE Manager Proxy LTS 4.3:kernel-macros">kernel-macros as a component of SUSE Manager Proxy LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Proxy LTS 4.3">
      <FullProductName ProductID="SUSE Manager Proxy LTS 4.3:kernel-source">kernel-source as a component of SUSE Manager Proxy LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server 4.3:kernel-default">kernel-default as a component of SUSE Manager Retail Branch Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server 4.3:kernel-default-devel">kernel-default-devel as a component of SUSE Manager Retail Branch Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server 4.3:kernel-devel">kernel-devel as a component of SUSE Manager Retail Branch Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server 4.3:kernel-macros">kernel-macros as a component of SUSE Manager Retail Branch Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server 4.3:kernel-source">kernel-source as a component of SUSE Manager Retail Branch Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server LTS 4.3:kernel-default">kernel-default as a component of SUSE Manager Retail Branch Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server LTS 4.3:kernel-default-devel">kernel-default-devel as a component of SUSE Manager Retail Branch Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server LTS 4.3:kernel-devel">kernel-devel as a component of SUSE Manager Retail Branch Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server LTS 4.3:kernel-macros">kernel-macros as a component of SUSE Manager Retail Branch Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Retail Branch Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Retail Branch Server LTS 4.3:kernel-source">kernel-source as a component of SUSE Manager Retail Branch Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:kernel-default">kernel-default as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:kernel-default-devel">kernel-default-devel as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:kernel-devel">kernel-devel as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:kernel-macros">kernel-macros as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server 4.3">
      <FullProductName ProductID="SUSE Manager Server 4.3:kernel-source">kernel-source as a component of SUSE Manager Server 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Server LTS 4.3:kernel-default">kernel-default as a component of SUSE Manager Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Server LTS 4.3:kernel-default-devel">kernel-default-devel as a component of SUSE Manager Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Server LTS 4.3:kernel-devel">kernel-devel as a component of SUSE Manager Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Server LTS 4.3:kernel-macros">kernel-macros as a component of SUSE Manager Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="SUSE Manager Server LTS 4.3">
      <FullProductName ProductID="SUSE Manager Server LTS 4.3:kernel-source">kernel-source as a component of SUSE Manager Server LTS 4.3</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Real Time Module 15 SP6">
      <FullProductName ProductID="SUSE Real Time Module 15 SP6:kernel-devel-rt">kernel-devel-rt as a component of SUSE Real Time Module 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Real Time Module 15 SP6">
      <FullProductName ProductID="SUSE Real Time Module 15 SP6:kernel-source-rt">kernel-source-rt as a component of SUSE Real Time Module 15 SP6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Real Time Module 15 SP7">
      <FullProductName ProductID="SUSE Real Time Module 15 SP7:kernel-devel-rt">kernel-devel-rt as a component of SUSE Real Time Module 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="SUSE Real Time Module 15 SP7">
      <FullProductName ProductID="SUSE Real Time Module 15 SP7:kernel-source-rt">kernel-source-rt as a component of SUSE Real Time Module 15 SP7</FullProductName>
    </Relationship>
    <Relationship ProductReference="cluster-md-kmp-default" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:cluster-md-kmp-default">cluster-md-kmp-default as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="dlm-kmp-default" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:dlm-kmp-default">dlm-kmp-default as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="gfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:gfs2-kmp-default">gfs2-kmp-default as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-default">kernel-default as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-devel" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-default-devel">kernel-default-devel as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-extra" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-default-extra">kernel-default-extra as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-default-livepatch">kernel-default-livepatch as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-livepatch-devel" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-default-livepatch-devel">kernel-default-livepatch-devel as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-optional" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-default-optional">kernel-default-optional as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-default-vdso" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-default-vdso">kernel-default-vdso as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kselftests-kmp-default" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kselftests-kmp-default">kselftests-kmp-default as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="ocfs2-kmp-default" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:ocfs2-kmp-default">ocfs2-kmp-default as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="reiserfs-kmp-default" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:reiserfs-kmp-default">reiserfs-kmp-default as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-devel">kernel-devel as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-macros" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-macros">kernel-macros as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-source">kernel-source as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-vanilla" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-source-vanilla">kernel-source-vanilla as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-azure" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-devel-azure">kernel-devel-azure as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-azure" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-source-azure">kernel-source-azure as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-devel-rt" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-devel-rt">kernel-devel-rt as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
    <Relationship ProductReference="kernel-source-rt" RelationType="Default Component Of" RelatesToProductReference="openSUSE Leap 15.6">
      <FullProductName ProductID="openSUSE Leap 15.6:kernel-source-rt">kernel-source-rt as a component of openSUSE Leap 15.6</FullProductName>
    </Relationship>
  </ProductTree>
  <Vulnerability xmlns="http://docs.oasis-open.org/csaf/ns/csaf-cvrf/v1.2/vuln" Ordinal="1">
    <Notes>
      <Note Title="Vulnerability Description" Type="General" Ordinal="1" xml:lang="en">In the Linux kernel, the following vulnerability has been resolved:

mm: fix a UAF when vma-&gt;mm is freed after vma-&gt;vm_refcnt got dropped

By inducing delays in the right places, Jann Horn created a reproducer for
a hard to hit UAF issue that became possible after VMAs were allowed to be
recycled by adding SLAB_TYPESAFE_BY_RCU to their cache.

Race description is borrowed from Jann's discovery report:
lock_vma_under_rcu() looks up a VMA locklessly with mas_walk() under
rcu_read_lock().  At that point, the VMA may be concurrently freed, and it
can be recycled by another process.  vma_start_read() then increments the
vma-&gt;vm_refcnt (if it is in an acceptable range), and if this succeeds,
vma_start_read() can return a recycled VMA.

In this scenario where the VMA has been recycled, lock_vma_under_rcu()
will then detect the mismatching -&gt;vm_mm pointer and drop the VMA through
vma_end_read(), which calls vma_refcount_put().  vma_refcount_put() drops
the refcount and then calls rcuwait_wake_up() using a copy of vma-&gt;vm_mm. 
This is wrong: It implicitly assumes that the caller is keeping the VMA's
mm alive, but in this scenario the caller has no relation to the VMA's mm,
so the rcuwait_wake_up() can cause UAF.

The diagram depicting the race:
T1         T2         T3
==         ==         ==
lock_vma_under_rcu
  mas_walk
          &lt;VMA gets removed from mm&gt;
                      mmap
                        &lt;the same VMA is reallocated&gt;
  vma_start_read
    __refcount_inc_not_zero_limited_acquire
                      munmap
                        __vma_enter_locked
                          refcount_add_not_zero
  vma_end_read
    vma_refcount_put
      __refcount_dec_and_test
                          rcuwait_wait_event
                            &lt;finish operation&gt;
      rcuwait_wake_up [UAF]

Note that rcuwait_wait_event() in T3 does not block because refcount was
already dropped by T1.  At this point T3 can exit and free the mm causing
UAF in T1.

To avoid this we move vma-&gt;vm_mm verification into vma_start_read() and
grab vma-&gt;vm_mm to stabilize it before vma_refcount_put() operation.

[surenb@google.com: v3]</Note>
    </Notes>
    <CVE>CVE-2025-38554</CVE>
    <ProductStatuses>
      <Status Type="Fixed">
        <ProductID>Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:iptables-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-4.42:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/base-os-container:2.1.3-4.39:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/kvm-os-container:2.1.3-4.41:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/rt-os-container:2.1.3-5.39:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/toolbox:13.2-9.1:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.0/toolbox:13.2-9.1:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.2:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.1/base-os-container:2.2.1-5.27:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.29:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.14:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SL-Micro:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SL-Micro-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base-RT:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base-RT-SelfInstall:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base-RT-encrypted:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base-SelfInstall:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base-VMware:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base-encrypted:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Base-qcow:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Default:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Default-SelfInstall:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Default-VMware:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Default-encrypted:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-Default-qcow:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SL-Micro-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-Azure:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro-Azure:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-Azure:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-Azure:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-Azure:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-Azure:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-Azure:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-Azure:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-Azure:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-Azure:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-EC2:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-EC2:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-EC2:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-EC2:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-EC2:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-GCE:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-GCE:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-GCE:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-GCE:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-BYOS-GCE:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-EC2:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro-EC2:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-EC2:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-EC2:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-EC2:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-GCE:iptables-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SLE-Micro-GCE:libip4tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-GCE:libip6tc2-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-GCE:libxtables12-1.8.9-4.1</ProductID>
        <ProductID>Image SLE-Micro-GCE:xtables-plugins-1.8.9-4.1</ProductID>
        <ProductID>Image SLES-Azure-3P:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-Azure-Basic:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-Azure-Standard:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-BYOS-Azure:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-BYOS-EC2:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-BYOS-GCE:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-CHOST-BYOS-Aliyun:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-CHOST-BYOS-Azure:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-CHOST-BYOS-EC2:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-CHOST-BYOS-GCE:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-CHOST-BYOS-GDC:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-CHOST-BYOS-SAP-CCloud:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-EC2:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-GCE:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-Hardened-BYOS-Azure:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-Hardened-BYOS-EC2:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-Hardened-BYOS-GCE:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure:ocfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure-3P:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure-3P:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure-3P:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure-3P:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-Azure-3P:ocfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-Azure:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-Azure:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-Azure:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-Azure:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-Azure:ocfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-EC2:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-EC2:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-EC2:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-EC2:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-EC2:ocfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-GCE:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-GCE:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-GCE:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-GCE:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-BYOS-GCE:ocfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-GCE:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-GCE:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-GCE:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-GCE:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAP-GCE:ocfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAPCAL-Azure:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAPCAL-EC2:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SLES-SAPCAL-GCE:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Server-Azure-llc:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Server-Azure-ltd:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Server-EC2-llc:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>Image SUSE-Multi-Linux-Manager-Server-EC2-ltd:libgcrypt20-1.10.3-slfo.1.1_2.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 16.0:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 16.0:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 16.0:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-64kb-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-64kb-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-livepatch-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-default-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-docs-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-docs-html-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-kvmsmall-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-macros-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-obs-qa-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-source-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-source-vanilla-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-syms-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP applications 16.0:kernel-zfcpdump-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-64kb-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-default-base-6.12.0-160000.6.1.160000.2.4</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-default-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-default-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-default-livepatch-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-livepatch-6_12_0-160000_5-rt-4-160000.3.4</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-macros-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-rt-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-rt-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-rt-livepatch-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Micro 6.2:kernel-source-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:cluster-md-kmp-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:cluster-md-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:cluster-md-kmp-rt-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dlm-kmp-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dlm-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dlm-kmp-rt-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-allwinner-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-altera-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-amazon-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-amd-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-amlogic-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-apm-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-apple-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-arm-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-broadcom-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-cavium-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-exynos-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-freescale-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-hisilicon-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-lg-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-marvell-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-mediatek-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-nvidia-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-qcom-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-renesas-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-rockchip-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-socionext-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-sprd-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:dtb-xilinx-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:gfs2-kmp-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:gfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:gfs2-kmp-rt-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-64kb-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-64kb-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-64kb-optional-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-default-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-default-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-default-optional-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-default-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-docs-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-docs-html-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-kvmsmall-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-macros-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-obs-build-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-obs-qa-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-rt-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-rt-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-rt-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-rt-optional-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-rt-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-source-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-source-vanilla-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-syms-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kernel-zfcpdump-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kselftests-kmp-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kselftests-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:kselftests-kmp-rt-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:ocfs2-kmp-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:ocfs2-kmp-default-6.12.0-160000.6.1</ProductID>
        <ProductID>openSUSE Leap 16.0:ocfs2-kmp-rt-6.12.0-160000.6.1</ProductID>
      </Status>
      <Status Type="First Fixed">
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-64kb-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-64kb-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-64kb-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-base-6.12.0-160000.6.1.160000.2.4</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-extra-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-livepatch-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-default-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-docs-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-docs-html-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-devel-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-kvmsmall-vdso-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-livepatch-6_12_0-160000_5-default-5-160000.4.3</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-macros-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-obs-qa-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-source-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-source-vanilla-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-syms-6.12.0-160000.6.1</ProductID>
        <ProductID>SUSE Linux Enterprise Server 16.0:kernel-zfcpdump-6.12.0-160000.6.1</ProductID>
      </Status>
      <Status Type="Known Not Affected">
        <ProductID>SLES-LTSS-TERADATA 15 SP2:kernel-default</ProductID>
        <ProductID>SLES-LTSS-TERADATA 15 SP2:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP3:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP3:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP3:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP3:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP3:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP3:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP6:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP6:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP7:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP7:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP7:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP7:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Availability Extension 15 SP7:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 12 SP5:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 12 SP5:kernel-default-kgraft-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 12 SP5:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP3:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP3:kernel-default-livepatch-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP3:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP4:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP4:kernel-default-livepatch-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP4:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP5:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP5:kernel-default-livepatch-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP5:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP6:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP6:kernel-default-livepatch-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP6:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP7:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP7:kernel-default-livepatch-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Live Patching 15 SP7:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.0:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.1:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.1:kernel-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.1:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.1:kernel-source-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.2:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.2:kernel-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.2:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.2:kernel-source-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.3:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.3:kernel-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.3:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.3:kernel-source-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.4:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.4:kernel-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.4:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.4:kernel-source-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.5:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.5:kernel-devel-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.5:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.5:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Micro 5.5:kernel-source-rt</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP6:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Basesystem 15 SP7:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP6:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Development Tools 15 SP7:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Legacy 15 SP6:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Legacy 15 SP6:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Legacy 15 SP6:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Legacy 15 SP7:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Legacy 15 SP7:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-devel-azure</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Public Cloud 15 SP6:kernel-source-azure</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-devel-azure</ProductID>
        <ProductID>SUSE Linux Enterprise Module for Public Cloud 15 SP7:kernel-source-azure</ProductID>
        <ProductID>SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-base</ProductID>
        <ProductID>SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 11 SP4 LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-base</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-default-man</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP2-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-base</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-default-man</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP4-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-base</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-default-man</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 12 SP5-LTSS:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-base</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-default-man</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP1-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP2-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP2-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP3-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP4-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP5-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15 SP6-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:kernel-default-base</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:kernel-default-man</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server 15-LTSS:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server Teradata 12 SP3:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server Teradata 12 SP3:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server Teradata 15 SP4:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server Teradata 15 SP4:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP3:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP4:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP5:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:cluster-md-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:dlm-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:gfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-default-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-devel</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-macros</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:ocfs2-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Server for SAP Applications 15 SP6:reiserfs-kmp-default</ProductID>
        <ProductID>SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-default-extra</ProductID>
        <ProductID>SUSE Linux Enterprise Workstation Extension 15 SP6:kernel-source</ProductID>
        <ProductID>SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default</ProductID>
        <ProductID>SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-default-extra</ProductID>
        <ProductID>SUSE Linux Enterprise Workstation Extension 15 SP7:kernel-source</ProductID>
        <ProductID>SUSE Linux Micro 6.0:kernel-default</ProductID>
        <ProductID>SUSE Linux Micro 6.0:kernel-devel</ProductID>
        <ProductID>SUSE Linux Micro 6.0:kernel-devel-rt</ProductID>
        <ProductID>SUSE Linux Micro 6.0:kernel-macros</ProductID>
        <ProductID>SUSE Linux Micro 6.0:kernel-source</ProductID>
        <ProductID>SUSE Linux Micro 6.0:kernel-source-rt</ProductID>
        <ProductID>SUSE Linux Micro 6.1:kernel-default</ProductID>
        <ProductID>SUSE Linux Micro 6.1:kernel-devel</ProductID>
        <ProductID>SUSE Linux Micro 6.1:kernel-devel-rt</ProductID>
        <ProductID>SUSE Linux Micro 6.1:kernel-macros</ProductID>
        <ProductID>SUSE Linux Micro 6.1:kernel-source</ProductID>
        <ProductID>SUSE Linux Micro 6.1:kernel-source-rt</ProductID>
        <ProductID>SUSE Manager Proxy 4.3:kernel-default</ProductID>
        <ProductID>SUSE Manager Proxy 4.3:kernel-default-devel</ProductID>
        <ProductID>SUSE Manager Proxy 4.3:kernel-devel</ProductID>
        <ProductID>SUSE Manager Proxy 4.3:kernel-macros</ProductID>
        <ProductID>SUSE Manager Proxy 4.3:kernel-source</ProductID>
        <ProductID>SUSE Manager Proxy LTS 4.3:kernel-default</ProductID>
        <ProductID>SUSE Manager Proxy LTS 4.3:kernel-default-devel</ProductID>
        <ProductID>SUSE Manager Proxy LTS 4.3:kernel-devel</ProductID>
        <ProductID>SUSE Manager Proxy LTS 4.3:kernel-macros</ProductID>
        <ProductID>SUSE Manager Proxy LTS 4.3:kernel-source</ProductID>
        <ProductID>SUSE Manager Retail Branch Server 4.3:kernel-default</ProductID>
        <ProductID>SUSE Manager Retail Branch Server 4.3:kernel-default-devel</ProductID>
        <ProductID>SUSE Manager Retail Branch Server 4.3:kernel-devel</ProductID>
        <ProductID>SUSE Manager Retail Branch Server 4.3:kernel-macros</ProductID>
        <ProductID>SUSE Manager Retail Branch Server 4.3:kernel-source</ProductID>
        <ProductID>SUSE Manager Retail Branch Server LTS 4.3:kernel-default</ProductID>
        <ProductID>SUSE Manager Retail Branch Server LTS 4.3:kernel-default-devel</ProductID>
        <ProductID>SUSE Manager Retail Branch Server LTS 4.3:kernel-devel</ProductID>
        <ProductID>SUSE Manager Retail Branch Server LTS 4.3:kernel-macros</ProductID>
        <ProductID>SUSE Manager Retail Branch Server LTS 4.3:kernel-source</ProductID>
        <ProductID>SUSE Manager Server 4.3:kernel-default</ProductID>
        <ProductID>SUSE Manager Server 4.3:kernel-default-devel</ProductID>
        <ProductID>SUSE Manager Server 4.3:kernel-devel</ProductID>
        <ProductID>SUSE Manager Server 4.3:kernel-macros</ProductID>
        <ProductID>SUSE Manager Server 4.3:kernel-source</ProductID>
        <ProductID>SUSE Manager Server LTS 4.3:kernel-default</ProductID>
        <ProductID>SUSE Manager Server LTS 4.3:kernel-default-devel</ProductID>
        <ProductID>SUSE Manager Server LTS 4.3:kernel-devel</ProductID>
        <ProductID>SUSE Manager Server LTS 4.3:kernel-macros</ProductID>
        <ProductID>SUSE Manager Server LTS 4.3:kernel-source</ProductID>
        <ProductID>SUSE Real Time Module 15 SP6:kernel-devel-rt</ProductID>
        <ProductID>SUSE Real Time Module 15 SP6:kernel-source-rt</ProductID>
        <ProductID>SUSE Real Time Module 15 SP7:kernel-devel-rt</ProductID>
        <ProductID>SUSE Real Time Module 15 SP7:kernel-source-rt</ProductID>
        <ProductID>openSUSE Leap 15.6:cluster-md-kmp-default</ProductID>
        <ProductID>openSUSE Leap 15.6:dlm-kmp-default</ProductID>
        <ProductID>openSUSE Leap 15.6:gfs2-kmp-default</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-default</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-default-devel</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-default-extra</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-default-livepatch</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-default-livepatch-devel</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-default-optional</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-default-vdso</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-devel</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-devel-azure</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-devel-rt</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-macros</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-source</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-source-azure</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-source-rt</ProductID>
        <ProductID>openSUSE Leap 15.6:kernel-source-vanilla</ProductID>
        <ProductID>openSUSE Leap 15.6:kselftests-kmp-default</ProductID>
        <ProductID>openSUSE Leap 15.6:ocfs2-kmp-default</ProductID>
        <ProductID>openSUSE Leap 15.6:reiserfs-kmp-default</ProductID>
      </Status>
    </ProductStatuses>
    <Threats>
      <Threat Type="Impact">
        <Description>important</Description>
      </Threat>
    </Threats>
    <CVSSScoreSets>
      <ScoreSetV3>
        <BaseScoreV3>7</BaseScoreV3>
        <VectorV3>CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H</VectorV3>
      </ScoreSetV3>
    </CVSSScoreSets>
  </Vulnerability>
</cvrfdoc>
